aboutsummaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix.c
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2020-12-29 14:14:03 -0800
committerGitHub <noreply@github.com>2020-12-29 22:14:03 +0000
commit12568fb5a9167d29a52f79c739f11830bde3e4be (patch)
tree95055812385bd3c27c732f06a3550f20d2a6ae65 /quantum/rgb_matrix.c
parent824e1cd95d61018979a9e391219a95f5a95b4a6e (diff)
downloadqmk_firmware-12568fb5a9167d29a52f79c739f11830bde3e4be.tar.gz
qmk_firmware-12568fb5a9167d29a52f79c739f11830bde3e4be.zip
[Bug] Fix RGB Matrix Indicators (#11308)
Diffstat (limited to 'quantum/rgb_matrix.c')
-rw-r--r--quantum/rgb_matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/rgb_matrix.c b/quantum/rgb_matrix.c
index c756857ae..04af3ae9e 100644
--- a/quantum/rgb_matrix.c
+++ b/quantum/rgb_matrix.c
@@ -403,7 +403,7 @@ void rgb_matrix_task(void) {
403 break; 403 break;
404 case RENDERING: 404 case RENDERING:
405 rgb_task_render(effect); 405 rgb_task_render(effect);
406 if (!suspend_backlight) { 406 if (effect) {
407 rgb_matrix_indicators(); 407 rgb_matrix_indicators();
408 rgb_matrix_indicators_advanced(&rgb_effect_params); 408 rgb_matrix_indicators_advanced(&rgb_effect_params);
409 } 409 }