diff options
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 4a6d0355f..83fa87708 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
@@ -150,10 +150,10 @@ bool process_record_quantum(keyrecord_t *record) { | |||
150 | 150 | ||
151 | if (!( | 151 | if (!( |
152 | process_record_kb(keycode, record) && | 152 | process_record_kb(keycode, record) && |
153 | #ifdef MIDI_ENABLE | 153 | #if defined(MIDI_ENABLE) && defined(MIDI_ADVANCED) |
154 | process_midi(keycode, record) && | 154 | process_midi(keycode, record) && |
155 | #endif | 155 | #endif |
156 | #ifdef AUDIO_ENABLE | 156 | #if defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC)) |
157 | process_music(keycode, record) && | 157 | process_music(keycode, record) && |
158 | #endif | 158 | #endif |
159 | #ifdef TAP_DANCE_ENABLE | 159 | #ifdef TAP_DANCE_ENABLE |