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, 4 insertions, 4 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index f430a521b..87b219428 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -411,7 +411,7 @@ void matrix_scan_quantum() {
411#endif 411#endif
412 412
413#if defined(AUDIO_ENABLE) && !defined(NO_MUSIC_MODE) 413#if defined(AUDIO_ENABLE) && !defined(NO_MUSIC_MODE)
414 matrix_scan_music(); 414 music_task();
415#endif 415#endif
416 416
417#ifdef KEY_OVERRIDE_ENABLE 417#ifdef KEY_OVERRIDE_ENABLE
@@ -419,15 +419,15 @@ void matrix_scan_quantum() {
419#endif 419#endif
420 420
421#ifdef SEQUENCER_ENABLE 421#ifdef SEQUENCER_ENABLE
422 matrix_scan_sequencer(); 422 sequencer_task();
423#endif 423#endif
424 424
425#ifdef TAP_DANCE_ENABLE 425#ifdef TAP_DANCE_ENABLE
426 matrix_scan_tap_dance(); 426 tap_dance_task();
427#endif 427#endif
428 428
429#ifdef COMBO_ENABLE 429#ifdef COMBO_ENABLE
430 matrix_scan_combo(); 430 combo_task();
431#endif 431#endif
432 432
433#ifdef LED_MATRIX_ENABLE 433#ifdef LED_MATRIX_ENABLE