|
@@ -2127,12 +2127,12 @@ void HMI_Printing() {
|
2127
|
2127
|
char cmd[40];
|
2128
|
2128
|
cmd[0] = '\0';
|
2129
|
2129
|
|
2130
|
|
- #if BOTH(HAS_HOTEND, PAUSE_HEAT)
|
2131
|
|
- if (resume_hotend_temp) sprintf_P(&cmd[strlen(cmd)], PSTR("M109 S%i\n"), resume_hotend_temp);
|
2132
|
|
- #endif
|
2133
|
2130
|
#if BOTH(HAS_HEATED_BED, PAUSE_HEAT)
|
2134
|
2131
|
if (resume_bed_temp) sprintf_P(cmd, PSTR("M190 S%i\n"), resume_bed_temp);
|
2135
|
2132
|
#endif
|
|
2133
|
+ #if BOTH(HAS_HOTEND, PAUSE_HEAT)
|
|
2134
|
+ if (resume_hotend_temp) sprintf_P(&cmd[strlen(cmd)], PSTR("M109 S%i\n"), resume_hotend_temp);
|
|
2135
|
+ #endif
|
2136
|
2136
|
|
2137
|
2137
|
strcat_P(cmd, M24_STR);
|
2138
|
2138
|
queue.inject(cmd);
|