diff options
author | Nick Brassel <nick@tzarc.org> | 2020-06-01 11:53:01 +1000 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2020-08-08 20:51:03 -0700 |
commit | b9f8ad1b9a5a7fcfe08e97976677401adae7db10 (patch) | |
tree | 66108e3ddeb6f514ce69582a1cfe409d39f125b9 /tmk_core/common | |
parent | d9cebd5d46360b67b5364f35644977c0a3e2834c (diff) |
Fix build when using IGNORE_MOD_TAP_INTERRUPT_PER_KEY. (#9258)
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c index dd5bfb08ef..9d5b0fcad1 100644 --- a/tmk_core/common/action.c +++ b/tmk_core/common/action.c @@ -335,7 +335,7 @@ void process_action(keyrecord_t *record, action_t action) { # if !defined(IGNORE_MOD_TAP_INTERRUPT) || defined(IGNORE_MOD_TAP_INTERRUPT_PER_KEY) if ( # ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY - !get_ignore_mod_tap_interrupt(get_event_keycode(record->event, false), &record) && + !get_ignore_mod_tap_interrupt(get_event_keycode(record->event, false), record) && # endif record->tap.interrupted) { dprint("mods_tap: tap: cancel: add_mods\n"); |