summaryrefslogtreecommitdiff
path: root/quantum/color.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-09-04 10:19:59 +1000
committerGitHub <noreply@github.com>2023-09-04 01:19:59 +0100
commit41bd4e35a09cc50f45112074d2b776254a3a17f8 (patch)
tree9258c5ad40dda232e3b8271942b436bdafa6f115 /quantum/color.c
parent1e3095f9cce45fab0a566e692b1ff1c2047cfa08 (diff)
Clean up RGB LED type (#21859)
Diffstat (limited to 'quantum/color.c')
-rw-r--r--quantum/color.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/color.c b/quantum/color.c
index 767155c9db..395383f428 100644
--- a/quantum/color.c
+++ b/quantum/color.c
@@ -110,7 +110,7 @@ RGB hsv_to_rgb_nocie(HSV hsv) {
}
#ifdef RGBW
-void convert_rgb_to_rgbw(LED_TYPE *led) {
+void convert_rgb_to_rgbw(rgb_led_t *led) {
// Determine lowest value in all three colors, put that into
// the white channel and then shift all colors by that amount
led->w = MIN(led->r, MIN(led->g, led->b));