Merge branch 'firmware25' into feat/navigator-qmk25

This commit is contained in:
Florian Didron
2025-07-11 08:57:43 +07:00

View File

@@ -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;
}