aboutsummaryrefslogtreecommitdiff
path: root/quantum/quantum.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r--quantum/quantum.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index 66feca2f2..5a2a73d4a 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -226,6 +226,9 @@ bool process_record_quantum(keyrecord_t *record) {
226 // Must run first to be able to mask key_up events. 226 // Must run first to be able to mask key_up events.
227 process_key_lock(&keycode, record) && 227 process_key_lock(&keycode, record) &&
228 #endif 228 #endif
229 #if defined(AUDIO_ENABLE) && defined(AUDIO_CLICKY)
230 process_clicky(keycode, record) &&
231 #endif //AUDIO_CLICKY
229 process_record_kb(keycode, record) && 232 process_record_kb(keycode, record) &&
230 #if defined(MIDI_ENABLE) && defined(MIDI_ADVANCED) 233 #if defined(MIDI_ENABLE) && defined(MIDI_ADVANCED)
231 process_midi(keycode, record) && 234 process_midi(keycode, record) &&
@@ -236,7 +239,7 @@ bool process_record_quantum(keyrecord_t *record) {
236 #ifdef STENO_ENABLE 239 #ifdef STENO_ENABLE
237 process_steno(keycode, record) && 240 process_steno(keycode, record) &&
238 #endif 241 #endif
239 #if ( defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))) && !defined(NO_MUSIC_MODE) 242 #if ( defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))) && !defined(NO_MUSIC_MODE)
240 process_music(keycode, record) && 243 process_music(keycode, record) &&
241 #endif 244 #endif
242 #ifdef TAP_DANCE_ENABLE 245 #ifdef TAP_DANCE_ENABLE