Remove extra #if (#14439)

This commit is contained in:
Giuliano Zaro 2019-06-29 01:54:22 +02:00 committed by Scott Lahteine
parent 4d5a1984e2
commit a9445d557e

View file

@ -1967,17 +1967,13 @@ void Temperature::disable_all_heaters() {
#if HAS_HEATED_BED
temp_bed.target = 0;
temp_bed.soft_pwm_amount = 0;
#if HAS_HEATED_BED
WRITE_HEATER_BED(LOW);
#endif
WRITE_HEATER_BED(LOW);
#endif
#if HAS_HEATED_CHAMBER
temp_chamber.target = 0;
temp_chamber.soft_pwm_amount = 0;
#if HAS_HEATED_CHAMBER
WRITE_HEATER_CHAMBER(LOW);
#endif
WRITE_HEATER_CHAMBER(LOW);
#endif
}