0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-30 21:58:06 +00:00

Fix AUTO_POWER_CONTROL compile error

Counterpart to #11467

Co-Authored-By: lsellens <lsellens@users.noreply.github.com>
This commit is contained in:
Scott Lahteine 2018-08-06 23:20:51 -05:00
parent eee1b7c50c
commit e4ecade8d4

View file

@ -70,7 +70,10 @@ bool Power::is_power_needed() {
) return true; ) return true;
HOTEND_LOOP() if (thermalManager.degTargetHotend(e) > 0) return true; HOTEND_LOOP() if (thermalManager.degTargetHotend(e) > 0) return true;
if (thermalManager.degTargetBed() > 0) return true;
#if HAS_HEATED_BED
if (thermalManager.degTargetBed() > 0) return true;
#endif
return false; return false;
} }