diff options
Diffstat (limited to 'keyboards/macro3/macro3.c')
-rw-r--r-- | keyboards/macro3/macro3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/macro3/macro3.c b/keyboards/macro3/macro3.c index 90bb982509..0937abfc83 100644 --- a/keyboards/macro3/macro3.c +++ b/keyboards/macro3/macro3.c @@ -10,9 +10,9 @@ bool encoder_update_kb(uint8_t index, bool clockwise) { if (!encoder_update_user(index, clockwise)) { return false; } if (index == 0) { if (clockwise) { - tap_code(KC_VOLU); + tap_code_delay(KC_VOLU, 10); } else { - tap_code(KC_VOLD); + tap_code_delay(KC_VOLD, 10); } } else if (index == 1) { if (clockwise) { |