Apply HOTEND_INDEX in MILLISECONDS_PREHEAT_TIME

This commit is contained in:
Scott Lahteine 2016-07-11 22:07:43 -07:00
parent 11dcbae7a2
commit bf9967c65d

View file

@ -306,9 +306,9 @@ class Temperature {
#endif
#ifdef MILLISECONDS_PREHEAT_TIME
if (celsius == 0.0f)
reset_preheat_time(hotend);
else if (target_temperature[hotend] == 0.0f)
start_preheat_time(hotend);
reset_preheat_time(HOTEND_INDEX);
else if (target_temperature[HOTEND_INDEX] == 0.0f)
start_preheat_time(HOTEND_INDEX);
#endif
target_temperature[HOTEND_INDEX] = celsius;
#if ENABLED(THERMAL_PROTECTION_HOTENDS) && WATCH_TEMP_PERIOD > 0