Fixed redefinition warnings of MSG_HOTEND_TOO_COLD. (#12203)

This commit is contained in:
Roman Moravčík
2018-10-24 22:00:07 +02:00
committed by Scott Lahteine
parent 7a04eb3a8b
commit e48cbff10d
3 changed files with 4 additions and 4 deletions

View File

@ -642,7 +642,7 @@ void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool n
#if ENABLED(PREVENT_COLD_EXTRUSION)
if (!DEBUGGING(DRYRUN) && thermalManager.targetTooColdToExtrude(active_extruder) && toolchange_settings.swap_length) {
SERIAL_ERROR_START();
SERIAL_ERRORLNPGM(MSG_HOTEND_TOO_COLD);
SERIAL_ERRORLNPGM(MSG_ERR_HOTEND_TOO_COLD);
active_extruder = tmp_extruder;
return;
}