Skip to content

Commit

Permalink
Fix type of Tap Dance max index variable (qmk#14887)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored and plam4u committed Nov 14, 2021
1 parent e5e4a3f commit be4fcd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantum/process_keycode/process_tap_dance.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit be4fcd3

Please sign in to comment.