diff options
| author | Ryan Caltabiano <rcalt2vt@gmail.com> | 2019-05-19 23:12:29 -0500 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-07-12 07:39:35 -0700 |
| commit | cf215487ba35c6754cd1c52bb900a46bb52ed3a3 (patch) | |
| tree | 1eb5341becef835bb2ca34a7a3066fe8e26d803c /quantum/rgb_matrix_animations/solid_reactive_cross.h | |
| parent | e717dcaa09143615ae0b46bf625621f67a7b55ce (diff) | |
| download | qmk_firmware-cf215487ba35c6754cd1c52bb900a46bb52ed3a3.tar.gz qmk_firmware-cf215487ba35c6754cd1c52bb900a46bb52ed3a3.zip | |
Switching rgb_config_t to use HSV struct
Diffstat (limited to 'quantum/rgb_matrix_animations/solid_reactive_cross.h')
| -rw-r--r-- | quantum/rgb_matrix_animations/solid_reactive_cross.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/quantum/rgb_matrix_animations/solid_reactive_cross.h b/quantum/rgb_matrix_animations/solid_reactive_cross.h index 99f22c694..5b9cfcbd5 100644 --- a/quantum/rgb_matrix_animations/solid_reactive_cross.h +++ b/quantum/rgb_matrix_animations/solid_reactive_cross.h | |||
| @@ -11,7 +11,7 @@ RGB_MATRIX_EFFECT(SOLID_REACTIVE_MULTICROSS) | |||
| 11 | 11 | ||
| 12 | #ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS | 12 | #ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS |
| 13 | 13 | ||
| 14 | static void SOLID_REACTIVE_CROSS_math(HSV* hsv, int16_t dx, int16_t dy, uint8_t dist, uint16_t tick) { | 14 | static HSV SOLID_REACTIVE_CROSS_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 | dx = dx < 0 ? dx * -1 : dx; | 16 | dx = dx < 0 ? dx * -1 : dx; |
| 17 | dy = dy < 0 ? dy * -1 : dy; | 17 | dy = dy < 0 ? dy * -1 : dy; |
| @@ -20,7 +20,8 @@ static void SOLID_REACTIVE_CROSS_math(HSV* hsv, int16_t dx, int16_t dy, uint8_t | |||
| 20 | effect += dx > dy ? dy : dx; | 20 | effect += dx > dy ? dy : dx; |
| 21 | if (effect > 255) | 21 | if (effect > 255) |
| 22 | effect = 255; | 22 | effect = 255; |
| 23 | hsv->v = qadd8(hsv->v, 255 - effect); | 23 | hsv.v = qadd8(hsv.v, 255 - effect); |
| 24 | return hsv; | ||
| 24 | } | 25 | } |
| 25 | 26 | ||
| 26 | #ifndef DISABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS | 27 | #ifndef DISABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS |
