aboutsummaryrefslogtreecommitdiff
path: root/quantum/quantum.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r--quantum/quantum.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index 0aecd238e..b83ae433e 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -158,6 +158,9 @@ bool process_record_quantum(keyrecord_t *record) {
158 #ifndef DISABLE_CHORDING 158 #ifndef DISABLE_CHORDING
159 process_chording(keycode, record) && 159 process_chording(keycode, record) &&
160 #endif 160 #endif
161 #ifdef COMBO_ENABLE
162 process_combo(keycode, record) &&
163 #endif
161 #ifdef UNICODE_ENABLE 164 #ifdef UNICODE_ENABLE
162 process_unicode(keycode, record) && 165 process_unicode(keycode, record) &&
163 #endif 166 #endif
@@ -536,6 +539,11 @@ void matrix_scan_quantum() {
536 #ifdef TAP_DANCE_ENABLE 539 #ifdef TAP_DANCE_ENABLE
537 matrix_scan_tap_dance(); 540 matrix_scan_tap_dance();
538 #endif 541 #endif
542
543 #ifdef COMBO_ENABLE
544 matrix_scan_combo();
545 #endif
546
539 matrix_scan_kb(); 547 matrix_scan_kb();
540} 548}
541 549