Skip to content

Commit

Permalink
Fixup handwired/jscotto/scotto40 (qmk#19675)
Browse files Browse the repository at this point in the history
  • Loading branch information
waffle87 authored Jan 24, 2023
1 parent 79d5f2f commit dd7b244
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions keyboards/handwired/jscotto/scotto40/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ enum {
TD_ESC_WINDOWS_EMOJI
};

void td_esc_spotlight_emoji (qk_tap_dance_state_t *state, void *user_data) {
void td_esc_spotlight_emoji (tap_dance_state_t *state, void *user_data) {
if (state->count == 1) {
tap_code(KC_ESC);
} else if (state->count == 2) {
Expand All @@ -33,7 +33,7 @@ void td_esc_spotlight_emoji (qk_tap_dance_state_t *state, void *user_data) {
}
}

void td_esc_windows_emoji (qk_tap_dance_state_t *state, void *user_data) {
void td_esc_windows_emoji (tap_dance_state_t *state, void *user_data) {
if (state->count == 1) {
tap_code(KC_ESC);
} else if (state->count == 2) {
Expand All @@ -44,7 +44,7 @@ void td_esc_windows_emoji (qk_tap_dance_state_t *state, void *user_data) {
};

// Tap Dance definitions
qk_tap_dance_action_t tap_dance_actions[] = {
tap_dance_action_t tap_dance_actions[] = {
[TD_ESC_SPOTLIGHT_EMOJI] = ACTION_TAP_DANCE_FN(td_esc_spotlight_emoji),
[TD_ESC_WINDOWS_EMOJI] = ACTION_TAP_DANCE_FN(td_esc_windows_emoji)
};
Expand Down

0 comments on commit dd7b244

Please sign in to comment.