diff options
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 83fa87708..7a27a568a 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
@@ -153,6 +153,9 @@ bool process_record_quantum(keyrecord_t *record) { | |||
153 | #if defined(MIDI_ENABLE) && defined(MIDI_ADVANCED) | 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 | ||
157 | process_audio(keycode, record) && | ||
158 | #endif | ||
156 | #if defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC)) | 159 | #if defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC)) |
157 | process_music(keycode, record) && | 160 | process_music(keycode, record) && |
158 | #endif | 161 | #endif |