diff options
Diffstat (limited to 'quantum/rgb_matrix_animations/solid_reactive_wide.h')
| -rw-r--r-- | quantum/rgb_matrix_animations/solid_reactive_wide.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/quantum/rgb_matrix_animations/solid_reactive_wide.h b/quantum/rgb_matrix_animations/solid_reactive_wide.h index 36edc475c..73779dfa7 100644 --- a/quantum/rgb_matrix_animations/solid_reactive_wide.h +++ b/quantum/rgb_matrix_animations/solid_reactive_wide.h | |||
| @@ -11,11 +11,12 @@ RGB_MATRIX_EFFECT(SOLID_REACTIVE_MULTIWIDE) | |||
| 11 | 11 | ||
| 12 | #ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS | 12 | #ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS |
| 13 | 13 | ||
| 14 | static void SOLID_REACTIVE_WIDE_math(HSV* hsv, int16_t dx, int16_t dy, uint8_t dist, uint16_t tick) { | 14 | static HSV SOLID_REACTIVE_WIDE_math(HSV hsv, int16_t dx, int16_t dy, uint8_t dist, uint16_t tick) { |
| 15 | uint16_t effect = tick + dist * 5; | 15 | uint16_t effect = tick + dist * 5; |
| 16 | if (effect > 255) | 16 | if (effect > 255) |
| 17 | effect = 255; | 17 | effect = 255; |
| 18 | hsv->v = qadd8(hsv->v, 255 - effect); | 18 | hsv.v = qadd8(hsv.v, 255 - effect); |
| 19 | return hsv; | ||
| 19 | } | 20 | } |
| 20 | 21 | ||
| 21 | #ifndef DISABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE | 22 | #ifndef DISABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE |
