diff options
author | Joel Challis <git@zvecr.com> | 2021-07-28 12:01:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-28 12:01:23 +0100 |
commit | 03d258c2226959480fc3ead1568ca2fe8ba37c59 (patch) | |
tree | 6a5f05f6017ec01ea68883749bc5af0e558a51cf /quantum/quantum.c | |
parent | c52c69d45f180e8ab677be4707ea2c8180a14254 (diff) | |
download | qmk_firmware-03d258c2226959480fc3ead1568ca2fe8ba37c59.tar.gz qmk_firmware-03d258c2226959480fc3ead1568ca2fe8ba37c59.zip |
matrix_scan_x -> x_task (#13748)
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 8 |
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 |