Ver código fonte

Fix HAS_CONTROLLER_FAN in is_power_needed

Scott Lahteine 7 anos atrás
pai
commit
cc9cef7f7a
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      Marlin/src/feature/power.cpp

+ 1
- 1
Marlin/src/feature/power.cpp Ver arquivo

@@ -45,7 +45,7 @@ bool Power::is_power_needed() {
45 45
     HOTEND_LOOP() if (thermalManager.autofan_speed[e] > 0) return true;
46 46
   #endif
47 47
 
48
-  #if ENABLED(AUTO_POWER_CONTROLLERFAN) && HAS_CONTROLLERFAN
48
+  #if ENABLED(AUTO_POWER_CONTROLLERFAN) && HAS_CONTROLLER_FAN
49 49
     if (controllerFanSpeed > 0) return true;
50 50
   #endif
51 51
 

Carregando…
Cancelar
Salvar