diff options
| author | Ryan | 2024-10-12 20:00:56 +0200 |
|---|---|---|
| committer | GitHub | 2024-10-12 20:00:56 +0200 |
| commit | 9884e4982be942a98cf5bca9360d20cc3fca3e9d (patch) | |
| tree | 2ec0af3864f1839a8896b25090f8fa7024394fdc /keyboards/xelus/la_plus | |
| parent | 5478051d7470efb32783b1c4080a2c3f24ce3c24 (diff) | |
Rename RGB/HSV structs: keyboard-level code (#24476)
Diffstat (limited to 'keyboards/xelus/la_plus')
| -rw-r--r-- | keyboards/xelus/la_plus/rgb_matrix_kb.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/xelus/la_plus/rgb_matrix_kb.inc b/keyboards/xelus/la_plus/rgb_matrix_kb.inc index aee484cdb8..88dd2ab0a2 100644 --- a/keyboards/xelus/la_plus/rgb_matrix_kb.inc +++ b/keyboards/xelus/la_plus/rgb_matrix_kb.inc @@ -13,8 +13,8 @@ RGB_MATRIX_EFFECT(startup_animation_solid) static void startup_animation_setleds(effect_params_t* params, bool dots) { uint8_t factor = 5; - HSV hsv = rgb_matrix_config.hsv; - RGB rgb = rgb_matrix_hsv_to_rgb(hsv); + hsv_t hsv = rgb_matrix_config.hsv; + rgb_t rgb = rgb_matrix_hsv_to_rgb(hsv); if (dots) { rgb_matrix_set_color_all(0, 0, 0); } |