diff options
Diffstat (limited to 'quantum/process_keycode')
| -rw-r--r-- | quantum/process_keycode/process_tap_dance.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/process_keycode/process_tap_dance.c b/quantum/process_keycode/process_tap_dance.c index 2c7f6e937..4fd45810b 100644 --- a/quantum/process_keycode/process_tap_dance.c +++ b/quantum/process_keycode/process_tap_dance.c | |||
| @@ -132,9 +132,9 @@ bool process_tap_dance(uint16_t keycode, keyrecord_t *record) { | |||
| 132 | void matrix_scan_tap_dance () { | 132 | void matrix_scan_tap_dance () { |
| 133 | if (highest_td == -1) | 133 | if (highest_td == -1) |
| 134 | return; | 134 | return; |
| 135 | int tap_user_defined; | 135 | uint16_t tap_user_defined; |
| 136 | 136 | ||
| 137 | for (int i = 0; i <= highest_td; i++) { | 137 | for (uint8_t i = 0; i <= highest_td; i++) { |
| 138 | qk_tap_dance_action_t *action = &tap_dance_actions[i]; | 138 | qk_tap_dance_action_t *action = &tap_dance_actions[i]; |
| 139 | if(action->custom_tapping_term > 0 ) { | 139 | if(action->custom_tapping_term > 0 ) { |
| 140 | tap_user_defined = action->custom_tapping_term; | 140 | tap_user_defined = action->custom_tapping_term; |
