diff options
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/action.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c index 7a47100a54..893e4db9c4 100644 --- a/tmk_core/common/action.c +++ b/tmk_core/common/action.c @@ -70,11 +70,11 @@ void process_action(keyrecord_t *record) #endif dprintln(); - // if (action.code >= 0x80000000) { - // action_custom(record, action.custom.id); - // return; - // } - dprintf("%X", action.custom.kind); + // 28bit custom action + if (action.custom.kind == 0x8) { + action_custom(record, action.custom.id); + return; + } switch (action.kind.id) { /* Key and Mods */ |