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/process_keycode/process_combo.c | |
parent | c52c69d45f180e8ab677be4707ea2c8180a14254 (diff) | |
download | qmk_firmware-03d258c2226959480fc3ead1568ca2fe8ba37c59.tar.gz qmk_firmware-03d258c2226959480fc3ead1568ca2fe8ba37c59.zip |
matrix_scan_x -> x_task (#13748)
Diffstat (limited to 'quantum/process_keycode/process_combo.c')
-rw-r--r-- | quantum/process_keycode/process_combo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/process_keycode/process_combo.c b/quantum/process_keycode/process_combo.c index f38d7d47a..9e1629248 100644 --- a/quantum/process_keycode/process_combo.c +++ b/quantum/process_keycode/process_combo.c | |||
@@ -184,7 +184,7 @@ bool process_combo(uint16_t keycode, keyrecord_t *record) { | |||
184 | return !is_combo_key; | 184 | return !is_combo_key; |
185 | } | 185 | } |
186 | 186 | ||
187 | void matrix_scan_combo(void) { | 187 | void combo_task(void) { |
188 | if (b_combo_enable && is_active && timer && timer_elapsed(timer) > COMBO_TERM) { | 188 | if (b_combo_enable && is_active && timer && timer_elapsed(timer) > COMBO_TERM) { |
189 | /* This disables the combo, meaning key events for this | 189 | /* This disables the combo, meaning key events for this |
190 | * combo will be handled by the next processors in the chain | 190 | * combo will be handled by the next processors in the chain |