aboutsummaryrefslogtreecommitdiff
path: root/quantum/quantum.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r--quantum/quantum.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index 1f8ce6c46..c71a97bf2 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -193,6 +193,10 @@ bool process_record_quantum(keyrecord_t *record) {
193 // } 193 // }
194 194
195 if (!( 195 if (!(
196 #if defined(KEY_LOCK_ENABLE)
197 // Must run first to be able to mask key_up events.
198 process_key_lock(keycode, record) &&
199 #endif
196 process_record_kb(keycode, record) && 200 process_record_kb(keycode, record) &&
197 #if defined(MIDI_ENABLE) && defined(MIDI_ADVANCED) 201 #if defined(MIDI_ENABLE) && defined(MIDI_ADVANCED)
198 process_midi(keycode, record) && 202 process_midi(keycode, record) &&