diff options
author | Albert Y <76888457+filterpaper@users.noreply.github.com> | 2022-12-30 08:38:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-30 11:38:15 +1100 |
commit | 77092675aa7ec001e6466f5ab099dcc9fbcfc856 (patch) | |
tree | 43a893a8a0bdd8e7e024f40e0d73a08a90496bd6 /quantum/rgb_matrix/animations/solid_reactive_cross.h | |
parent | 40fddcb1e5fde9acea6ae0f3b68b15726da0d916 (diff) |
Update RGB matrix reactive gradient timer scale (#19415)
Diffstat (limited to 'quantum/rgb_matrix/animations/solid_reactive_cross.h')
-rw-r--r-- | quantum/rgb_matrix/animations/solid_reactive_cross.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/rgb_matrix/animations/solid_reactive_cross.h b/quantum/rgb_matrix/animations/solid_reactive_cross.h index 9e5703a0ea..a18d6b03dd 100644 --- a/quantum/rgb_matrix/animations/solid_reactive_cross.h +++ b/quantum/rgb_matrix/animations/solid_reactive_cross.h @@ -20,7 +20,7 @@ static HSV SOLID_REACTIVE_CROSS_math(HSV hsv, int16_t dx, int16_t dy, uint8_t di effect += dx > dy ? dy : dx; if (effect > 255) effect = 255; # ifdef RGB_MATRIX_SOLID_REACTIVE_GRADIENT_MODE - hsv.h = scale16by8(g_rgb_timer, add8(rgb_matrix_config.speed, 1) >> 6); + hsv.h = scale16by8(g_rgb_timer, qadd8(rgb_matrix_config.speed, 8) >> 4); # endif hsv.v = qadd8(hsv.v, 255 - effect); return hsv; |