summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-10-19 20:50:44 -0700
committerGitHub <noreply@github.com>2021-10-19 20:50:44 -0700
commit0fd45d59845d71e435f36975d9ba8a54dfb2a87d (patch)
treee420447fb9b6e2222a6f6a13821384bb2fec5c14
parentc9562ebfde8bab54c83215c4970163d19ce199b1 (diff)
Fix type of Tap Dance max index variable (#14887)0.14.25
-rw-r--r--quantum/process_keycode/process_tap_dance.c2
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 225b36cd5f..c707fdea30 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);
#endif
static uint16_t last_td;
-static int8_t highest_td = -1;
+static int16_t highest_td = -1;
void qk_tap_dance_pair_on_each_tap(qk_tap_dance_state_t *state, void *user_data) {
qk_tap_dance_pair_t *pair = (qk_tap_dance_pair_t *)user_data;