From 47401ec97b9914fc41a70d9733122582954dc2d5 Mon Sep 17 00:00:00 2001 From: AnHardt Date: Wed, 7 Oct 2015 12:08:57 +0200 Subject: [PATCH] MSG_EXTRUDER_SWITCHED_OFF was renamed to MSG_REDUNDANCY in language.h, but was not renamed here. If TEMP_SENSOR_1 is enabled as redundant then an error is thrown that MSG_EXTRUDER_SWITCHED_OFF is not defined. Originaly by @12dstring --- Marlin/temperature.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/temperature.cpp b/Marlin/temperature.cpp index a646136d39..131be97760 100644 --- a/Marlin/temperature.cpp +++ b/Marlin/temperature.cpp @@ -655,7 +655,7 @@ void manage_heater() { #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT) if (fabs(current_temperature[0] - redundant_temperature) > MAX_REDUNDANT_TEMP_SENSOR_DIFF) { - _temp_error(0, PSTR(MSG_EXTRUDER_SWITCHED_OFF), PSTR(MSG_ERR_REDUNDANT_TEMP)); + _temp_error(0, PSTR(MSG_REDUNDANCY), PSTR(MSG_ERR_REDUNDANT_TEMP)); } #endif