Browse Source

Fix HAS_CONTROLLER_FAN in is_power_needed

pull/1/head
Scott Lahteine 6 years ago
parent
commit
cc9cef7f7a
  1. 2
      Marlin/src/feature/power.cpp

2
Marlin/src/feature/power.cpp

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

Loading…
Cancel
Save