Turn fans off in zero_fan_speeds

Addressing #13231
This commit is contained in:
Scott Lahteine 2019-02-22 21:00:36 -06:00
parent 15aa932aa6
commit 02fec89a0d

View file

@ -381,7 +381,7 @@ class Temperature {
static inline void zero_fan_speeds() {
#if FAN_COUNT > 0
FANS_LOOP(i) fan_speed[i] = 0;
FANS_LOOP(i) set_fan_speed(i, 0);
#endif
}