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_nexus.h | |
parent | e717dcaa09143615ae0b46bf625621f67a7b55ce (diff) |
Switching rgb_config_t to use HSV struct
Diffstat (limited to 'quantum/rgb_matrix_animations/solid_reactive_nexus.h')
-rw-r--r-- | quantum/rgb_matrix_animations/solid_reactive_nexus.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/quantum/rgb_matrix_animations/solid_reactive_nexus.h b/quantum/rgb_matrix_animations/solid_reactive_nexus.h index 8bebd042d2..e90eaf4b28 100644 --- a/quantum/rgb_matrix_animations/solid_reactive_nexus.h +++ b/quantum/rgb_matrix_animations/solid_reactive_nexus.h @@ -11,7 +11,7 @@ RGB_MATRIX_EFFECT(SOLID_REACTIVE_MULTINEXUS) #ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS -static void SOLID_REACTIVE_NEXUS_math(HSV* hsv, int16_t dx, int16_t dy, uint8_t dist, uint16_t tick) { +static HSV SOLID_REACTIVE_NEXUS_math(HSV hsv, int16_t dx, int16_t dy, uint8_t dist, uint16_t tick) { uint16_t effect = tick - dist; if (effect > 255) effect = 255; @@ -19,8 +19,9 @@ static void SOLID_REACTIVE_NEXUS_math(HSV* hsv, int16_t dx, int16_t dy, uint8_t effect = 255; if ((dx > 8 || dx < -8) && (dy > 8 || dy < -8)) effect = 255; - hsv->v = qadd8(hsv->v, 255 - effect); - hsv->h = rgb_matrix_config.hue + dy / 4; + hsv.v = qadd8(hsv.v, 255 - effect); + hsv.h = rgb_matrix_config.hsv.h + dy / 4; + return hsv; } #ifndef DISABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS |