diff options
Diffstat (limited to 'quantum/rgblight.c')
-rw-r--r-- | quantum/rgblight.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/rgblight.c b/quantum/rgblight.c index 141dc2e7b..26887f057 100644 --- a/quantum/rgblight.c +++ b/quantum/rgblight.c | |||
@@ -622,12 +622,12 @@ void rgblight_set(void) { | |||
622 | start_led = led + clipping_start_pos; | 622 | start_led = led + clipping_start_pos; |
623 | # endif | 623 | # endif |
624 | 624 | ||
625 | #ifdef RGBW | 625 | # ifdef RGBW |
626 | for (uint8_t i = 0; i < num_leds; i++) { | 626 | for (uint8_t i = 0; i < num_leds; i++) { |
627 | convert_rgb_to_rgbw(&start_led[i]); | 627 | convert_rgb_to_rgbw(&start_led[i]); |
628 | } | 628 | } |
629 | #endif | 629 | # endif |
630 | ws2812_setleds(start_led, num_leds); | 630 | ws2812_setleds(start_led, num_leds); |
631 | } | 631 | } |
632 | #endif | 632 | #endif |
633 | 633 | ||