mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-03-13 01:40:09 +00:00
Fix HAS_CONTROLLER_FAN in is_power_needed
This commit is contained in:
parent
c4dbedd5b6
commit
06dff0b7ec
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue