diff options
author | Dasky <32983009+daskygit@users.noreply.github.com> | 2023-10-24 00:00:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-24 00:00:16 +0100 |
commit | ca4541699915b37cd1f253bbed51854627efd2ce (patch) | |
tree | 39c04dd015effe5413768fce36a0eb793c96cc5b | |
parent | d2773c6d67bce73dc3b8bc7922463184304651b1 (diff) |
Remove extra led_matrix_indicators_user call (#22329)
-rw-r--r-- | quantum/led_matrix/led_matrix.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/quantum/led_matrix/led_matrix.c b/quantum/led_matrix/led_matrix.c index 1676a60aa3..2ec0ec4b19 100644 --- a/quantum/led_matrix/led_matrix.c +++ b/quantum/led_matrix/led_matrix.c @@ -389,7 +389,6 @@ void led_matrix_task(void) { void led_matrix_indicators(void) { led_matrix_indicators_kb(); - led_matrix_indicators_user(); } __attribute__((weak)) bool led_matrix_indicators_kb(void) { @@ -415,7 +414,6 @@ void led_matrix_indicators_advanced(effect_params_t *params) { uint8_t max = LED_MATRIX_LED_COUNT; #endif led_matrix_indicators_advanced_kb(min, max); - led_matrix_indicators_advanced_user(min, max); } __attribute__((weak)) bool led_matrix_indicators_advanced_kb(uint8_t led_min, uint8_t led_max) { |