]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - quantum/rgb_matrix_animations/colorband_pinwheel_sat_anim.h
Fixing effects to respect user sat and val levels (#6275)
[qmk_firmware.git] / quantum / rgb_matrix_animations / colorband_pinwheel_sat_anim.h
index cf9c0784a83e6815cbc86c1f87321bac93ba1af5..3739cde1f62063e4cc360be738ac66433d96c47d 100644 (file)
@@ -3,7 +3,7 @@ RGB_MATRIX_EFFECT(BAND_PINWHEEL_SAT)
 #ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
 
 static void BAND_PINWHEEL_SAT_math(HSV* hsv, int16_t dx, int16_t dy, uint8_t time) {
-    hsv->s = rgb_matrix_config.sat - time - atan2_8(dy, dx) * 3;
+    hsv->s = scale8(rgb_matrix_config.sat - time - atan2_8(dy, dx) * 3, rgb_matrix_config.sat);
 }
 
 bool BAND_PINWHEEL_SAT(effect_params_t* params) {