diff options
Diffstat (limited to 'quantum/rgb_matrix_animations/breathing_anim.h')
-rw-r--r-- | quantum/rgb_matrix_animations/breathing_anim.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/rgb_matrix_animations/breathing_anim.h b/quantum/rgb_matrix_animations/breathing_anim.h index 4a9a1dcdb..54d60f927 100644 --- a/quantum/rgb_matrix_animations/breathing_anim.h +++ b/quantum/rgb_matrix_animations/breathing_anim.h | |||
@@ -12,6 +12,7 @@ bool rgb_matrix_breathing(effect_params_t* params) { | |||
12 | HSV hsv = { rgb_matrix_config.hue, rgb_matrix_config.sat, val }; | 12 | HSV hsv = { rgb_matrix_config.hue, rgb_matrix_config.sat, val }; |
13 | RGB rgb = hsv_to_rgb(hsv); | 13 | RGB rgb = hsv_to_rgb(hsv); |
14 | for (uint8_t i = led_min; i < led_max; i++) { | 14 | for (uint8_t i = led_min; i < led_max; i++) { |
15 | RGB_MATRIX_TEST_LED_FLAGS(); | ||
15 | rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b); | 16 | rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b); |
16 | } | 17 | } |
17 | return led_max < DRIVER_LED_TOTAL; | 18 | return led_max < DRIVER_LED_TOTAL; |