diff options
author | Drashna Jaelre <drashna@live.com> | 2021-10-19 20:50:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 20:50:44 -0700 |
commit | 0fd45d59845d71e435f36975d9ba8a54dfb2a87d (patch) | |
tree | e420447fb9b6e2222a6f6a13821384bb2fec5c14 | |
parent | c9562ebfde8bab54c83215c4970163d19ce199b1 (diff) | |
download | qmk_firmware-0fd45d59845d71e435f36975d9ba8a54dfb2a87d.tar.gz qmk_firmware-0fd45d59845d71e435f36975d9ba8a54dfb2a87d.zip |
Fix type of Tap Dance max index variable (#14887)
-rw-r--r-- | quantum/process_keycode/process_tap_dance.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/process_keycode/process_tap_dance.c b/quantum/process_keycode/process_tap_dance.c index 225b36cd5..c707fdea3 100644 --- a/quantum/process_keycode/process_tap_dance.c +++ b/quantum/process_keycode/process_tap_dance.c | |||
@@ -20,7 +20,7 @@ uint8_t get_oneshot_mods(void); | |||
20 | #endif | 20 | #endif |
21 | 21 | ||
22 | static uint16_t last_td; | 22 | static uint16_t last_td; |
23 | static int8_t highest_td = -1; | 23 | static int16_t highest_td = -1; |
24 | 24 | ||
25 | void qk_tap_dance_pair_on_each_tap(qk_tap_dance_state_t *state, void *user_data) { | 25 | void qk_tap_dance_pair_on_each_tap(qk_tap_dance_state_t *state, void *user_data) { |
26 | qk_tap_dance_pair_t *pair = (qk_tap_dance_pair_t *)user_data; | 26 | qk_tap_dance_pair_t *pair = (qk_tap_dance_pair_t *)user_data; |