summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-10-28 16:27:19 -0700
committerGitHub <noreply@github.com>2021-10-29 08:27:19 +0900
commit6d7b6596bea2315d8ac5a9b66141793a785279a2 (patch)
tree05b49760c9ab06a40859c0855eea417119b7f300
parent28d29f7df699e057c38a40df8f5452fc4a25d629 (diff)
fix bug that limits number of tap dances to 128 (#342)
-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 138de0eba2..cc7aad44d5 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;