diff options
author | Wojciech Siewierski <wojciech.siewierski@onet.pl> | 2016-03-15 16:03:30 +0100 |
---|---|---|
committer | Wojciech Siewierski <wojciech.siewierski@onet.pl> | 2016-03-15 16:03:30 +0100 |
commit | 73cb87740bd814c95007f9ef6ce3dcd542a62afd (patch) | |
tree | 446427daf7cbfbd6c9d76008dd907ff16e9ac731 /tmk_core/common/action.h | |
parent | 20dd9c032616722a54174d53b0f8824f639b5263 (diff) | |
download | qmk_firmware-73cb87740bd814c95007f9ef6ce3dcd542a62afd.tar.gz qmk_firmware-73cb87740bd814c95007f9ef6ce3dcd542a62afd.zip |
Always provide an implementation of process_action_nocache
Diffstat (limited to 'tmk_core/common/action.h')
-rw-r--r-- | tmk_core/common/action.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/action.h b/tmk_core/common/action.h index 34a794db2..533e5d1a0 100644 --- a/tmk_core/common/action.h +++ b/tmk_core/common/action.h | |||
@@ -61,8 +61,8 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt); | |||
61 | /* Utilities for actions. */ | 61 | /* Utilities for actions. */ |
62 | #if !defined(NO_ACTION_LAYER) && defined(PREVENT_STUCK_MODIFIERS) | 62 | #if !defined(NO_ACTION_LAYER) && defined(PREVENT_STUCK_MODIFIERS) |
63 | extern bool disable_action_cache; | 63 | extern bool disable_action_cache; |
64 | void process_action_nocache(keyrecord_t *record); | ||
65 | #endif | 64 | #endif |
65 | void process_action_nocache(keyrecord_t *record); | ||
66 | void process_action(keyrecord_t *record); | 66 | void process_action(keyrecord_t *record); |
67 | void register_code(uint8_t code); | 67 | void register_code(uint8_t code); |
68 | void unregister_code(uint8_t code); | 68 | void unregister_code(uint8_t code); |