diff options
author | shela <shelaf@users.noreply.github.com> | 2021-02-17 15:29:15 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 17:29:15 +1100 |
commit | fe7240628ae524dae91e57529c157a700cf691be (patch) | |
tree | 21ff493be9a9cabc8f53030cc33d511657939e1e /keyboards/hhkb/ansi/keymaps/shela | |
parent | bf3ee94b9ab8030a46f22e5ad80f20ea0675c510 (diff) |
fix build error (#11939)
Diffstat (limited to 'keyboards/hhkb/ansi/keymaps/shela')
-rw-r--r-- | keyboards/hhkb/ansi/keymaps/shela/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/hhkb/ansi/keymaps/shela/keymap.c b/keyboards/hhkb/ansi/keymaps/shela/keymap.c index 9fbb469381..68f9aa6726 100644 --- a/keyboards/hhkb/ansi/keymaps/shela/keymap.c +++ b/keyboards/hhkb/ansi/keymaps/shela/keymap.c @@ -315,7 +315,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { register_code(r_inner); r_long_pressed = true; } - set_single_persistent_default_layer(_PSEUDO); + // set_single_persistent_default_layer(_PSEUDO); } return false; case TENKEY: @@ -433,7 +433,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { return true; } -uint16_t get_tapping_term(uint16_t keycode) { +uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) { switch (keycode) { case LT_SPFN: return SPFN_TAPPING_TERM; |