Merge pull request #652 from CapeLeidokos/pr_virtual_build_fix_f4

Wrong type of PROGMEM read function fixed
pull/659/head
Jesse Vincent 6 years ago committed by GitHub
commit d9243c1d4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -60,7 +60,7 @@ EventHandlerResult BootAnimationEffect::afterEachCycle() {
Key k = Layer.lookupOnActiveLayer(r, c);
Key g;
g.flags = 0;
g.keyCode = pgm_read_word(&greeting_[current_index_]);
g.keyCode = pgm_read_byte(&greeting_[current_index_]);
if (k.raw == g.raw) {
row = r;

Loading…
Cancel
Save