diff options
author | Ryan <fauxpark@gmail.com> | 2024-04-28 00:36:54 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-28 00:36:54 +1000 |
commit | 0ff53b24984e88f385638e47ea076b4d2945c0c6 (patch) | |
tree | 73c0e43df640c132507cb146447adfb7d0ed4b49 /quantum/rgb_matrix | |
parent | 8f8fffc1740be81fbfe4a07a74e9f03962c1062a (diff) |
Rename `RGBW` define to `WS2812_RGBW` (#23585)
Diffstat (limited to 'quantum/rgb_matrix')
-rw-r--r-- | quantum/rgb_matrix/rgb_matrix_drivers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/rgb_matrix/rgb_matrix_drivers.c b/quantum/rgb_matrix/rgb_matrix_drivers.c index 4370996d0e..db3a2ef9e0 100644 --- a/quantum/rgb_matrix/rgb_matrix_drivers.c +++ b/quantum/rgb_matrix/rgb_matrix_drivers.c @@ -185,7 +185,7 @@ static inline void setled(int i, uint8_t r, uint8_t g, uint8_t b) { rgb_matrix_ws2812_array[i].r = r; rgb_matrix_ws2812_array[i].g = g; rgb_matrix_ws2812_array[i].b = b; -# ifdef RGBW +# ifdef WS2812_RGBW convert_rgb_to_rgbw(&rgb_matrix_ws2812_array[i]); # endif } |