diff --git a/src/Akela/GhostInTheFirmware.cpp b/src/Akela/GhostInTheFirmware.cpp index 62c38ab6..3a5d465a 100644 --- a/src/Akela/GhostInTheFirmware.cpp +++ b/src/Akela/GhostInTheFirmware.cpp @@ -61,7 +61,9 @@ namespace Akela { byte col = pgm_read_byte (&(ghostKeys[currentPos].col)); handle_key_event (Key_NoKey, row, col, WAS_PRESSED); - } else if (timer < timeOut / 3) { + } + + if (timer < timeOut / 3) { byte row = pgm_read_byte (&(ghostKeys[currentPos].row)); byte col = pgm_read_byte (&(ghostKeys[currentPos].col));