diff --git a/StenoFW.ino b/StenoFW.ino index 60f9aec..3c48da6 100755 --- a/StenoFW.ino +++ b/StenoFW.ino @@ -125,7 +125,7 @@ void checkAlreadyDebouncingKeys() { debouncingKeys[i][j] = false; continue; } - if (debouncingKeys[i][j] == true && micros() - debouncingMicros[i][j] / 1000 > debounceMillis) { + if (debouncingKeys[i][j] == true && (micros() - debouncingMicros[i][j]) / 1000 > debounceMillis) { isStrokeInProgress = true; currentChord[i][j] = true; return;