Fix compilation error for `tap_code_delay()` (#11938)

master
Ryan 2021-02-17 17:26:57 +11:00 committed by GitHub
parent 5688655971
commit be70f466fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -947,7 +947,9 @@ void unregister_code(uint8_t code) {
*/
void tap_code_delay(uint8_t code, uint16_t delay) {
register_code(code);
wait_ms(delay);
for (uint16_t i = delay; i > 0; i--) {
wait_ms(1);
}
unregister_code(code);
}