aboutsummaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix/animations/riverflow_anim.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2024-10-12 10:10:02 +1100
committerGitHub <noreply@github.com>2024-10-12 00:10:02 +0100
commit6129af93f497077a994e8e41473e2bd3d6ea5e67 (patch)
tree68de5019339936b281fe337a5d8e5273f8b7dec5 /quantum/rgb_matrix/animations/riverflow_anim.h
parenta10e7cc8582114267ab474a0049619b510199322 (diff)
Rename RGB and HSV structs (#24471)
Diffstat (limited to 'quantum/rgb_matrix/animations/riverflow_anim.h')
-rw-r--r--quantum/rgb_matrix/animations/riverflow_anim.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/rgb_matrix/animations/riverflow_anim.h b/quantum/rgb_matrix/animations/riverflow_anim.h
index 195d15986d..737735fe83 100644
--- a/quantum/rgb_matrix/animations/riverflow_anim.h
+++ b/quantum/rgb_matrix/animations/riverflow_anim.h
@@ -8,10 +8,10 @@ bool RIVERFLOW(effect_params_t* params) {
RGB_MATRIX_USE_LIMITS(led_min, led_max);
for (uint8_t i = led_min; i < led_max; i++) {
RGB_MATRIX_TEST_LED_FLAGS();
- HSV hsv = rgb_matrix_config.hsv;
+ hsv_t hsv = rgb_matrix_config.hsv;
uint16_t time = scale16by8(g_rgb_timer + (i * 315), rgb_matrix_config.speed / 8);
hsv.v = scale8(abs8(sin8(time) - 128) * 2, hsv.v);
- RGB rgb = rgb_matrix_hsv_to_rgb(hsv);
+ rgb_t rgb = rgb_matrix_hsv_to_rgb(hsv);
rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
}