diff options
author | Ryan <fauxpark@gmail.com> | 2023-09-04 10:19:59 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-04 01:19:59 +0100 |
commit | 41bd4e35a09cc50f45112074d2b776254a3a17f8 (patch) | |
tree | 9258c5ad40dda232e3b8271942b436bdafa6f115 /users/zer09 | |
parent | 1e3095f9cce45fab0a566e692b1ff1c2047cfa08 (diff) |
Clean up RGB LED type (#21859)
Diffstat (limited to 'users/zer09')
-rw-r--r-- | users/zer09/lights.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/zer09/lights.h b/users/zer09/lights.h index f1bd7245d5..380283b733 100644 --- a/users/zer09/lights.h +++ b/users/zer09/lights.h @@ -9,7 +9,7 @@ #define EECONFIG_LED_DIM_LVL (uint8_t *)15 #define SET_LED_RGB(r, g, b, led_dim, pos) \ - setrgb(r >> led_dim, g >> led_dim, b >> led_dim, (LED_TYPE *)&led[pos]) + setrgb(r >> led_dim, g >> led_dim, b >> led_dim, (rgb_led_t *)&led[pos]) typedef enum { DEFAULT, |