From 45118c3edf16ad48901867cf73e1fd7f254929d6 Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Thu, 10 Jul 2025 18:47:31 -0700 Subject: [PATCH] Update solid_reactive_simple_anim.h (#413) --- quantum/rgb_matrix/animations/solid_reactive_simple_anim.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/rgb_matrix/animations/solid_reactive_simple_anim.h b/quantum/rgb_matrix/animations/solid_reactive_simple_anim.h index f20f1b1fb6..e0c625ba82 100644 --- a/quantum/rgb_matrix/animations/solid_reactive_simple_anim.h +++ b/quantum/rgb_matrix/animations/solid_reactive_simple_anim.h @@ -7,7 +7,7 @@ static hsv_t SOLID_REACTIVE_SIMPLE_math(hsv_t hsv, uint16_t offset) { # ifdef RGB_MATRIX_SOLID_REACTIVE_GRADIENT_MODE hsv.h = scale16by8(g_rgb_timer, qadd8(rgb_matrix_config.speed, 8) >> 4); # endif - hsv.v = scale8(255 - offset, hsv.v); + hsv.v = scale8(257 - offset, hsv.v); return hsv; }