aboutsummaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix_animations/splash_anim.h
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/rgb_matrix_animations/splash_anim.h')
-rw-r--r--quantum/rgb_matrix_animations/splash_anim.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/quantum/rgb_matrix_animations/splash_anim.h b/quantum/rgb_matrix_animations/splash_anim.h
index c4c051653..19ccb256e 100644
--- a/quantum/rgb_matrix_animations/splash_anim.h
+++ b/quantum/rgb_matrix_animations/splash_anim.h
@@ -11,12 +11,13 @@ RGB_MATRIX_EFFECT(MULTISPLASH)
11 11
12#ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS 12#ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
13 13
14void SPLASH_math(HSV* hsv, int16_t dx, int16_t dy, uint8_t dist, uint16_t tick) { 14HSV SPLASH_math(HSV hsv, int16_t dx, int16_t dy, uint8_t dist, uint16_t tick) {
15 uint16_t effect = tick - dist; 15 uint16_t effect = tick - dist;
16 if (effect > 255) 16 if (effect > 255)
17 effect = 255; 17 effect = 255;
18 hsv->h += effect; 18 hsv.h += effect;
19 hsv->v = qadd8(hsv->v, 255 - effect); 19 hsv.v = qadd8(hsv.v, 255 - effect);
20 return hsv;
20} 21}
21 22
22#ifndef DISABLE_RGB_MATRIX_SPLASH 23#ifndef DISABLE_RGB_MATRIX_SPLASH