From 02fec89a0dd671d08d8718ea3cab90177514c41d Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Fri, 22 Feb 2019 21:00:36 -0600 Subject: [PATCH] Turn fans off in zero_fan_speeds Addressing #13231 --- Marlin/src/module/temperature.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/module/temperature.h b/Marlin/src/module/temperature.h index acbc634d27..d376a70915 100644 --- a/Marlin/src/module/temperature.h +++ b/Marlin/src/module/temperature.h @@ -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 }