summaryrefslogtreecommitdiff
path: root/quantum/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/action.c')
-rw-r--r--quantum/action.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/action.c b/quantum/action.c
index 59bfefc495..a45e70c557 100644
--- a/quantum/action.c
+++ b/quantum/action.c
@@ -285,7 +285,7 @@ void process_record(keyrecord_t *record) {
285} 285}
286 286
287void process_record_handler(keyrecord_t *record) { 287void process_record_handler(keyrecord_t *record) {
288#ifdef COMBO_ENABLE 288#if defined(COMBO_ENABLE) || defined(REPEAT_KEY_ENABLE)
289 action_t action; 289 action_t action;
290 if (record->keycode) { 290 if (record->keycode) {
291 action = action_for_keycode(record->keycode); 291 action = action_for_keycode(record->keycode);
@@ -1109,7 +1109,7 @@ bool is_tap_record(keyrecord_t *record) {
1109 return false; 1109 return false;
1110 } 1110 }
1111 1111
1112#ifdef COMBO_ENABLE 1112#if defined(COMBO_ENABLE) || defined(REPEAT_KEY_ENABLE)
1113 action_t action; 1113 action_t action;
1114 if (record->keycode) { 1114 if (record->keycode) {
1115 action = action_for_keycode(record->keycode); 1115 action = action_for_keycode(record->keycode);