Skip to content

Commit 63fba61

Browse files
committed
🩹 Fix serial temp error language
1 parent fe9e890 commit 63fba61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/module/temperature.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1814,7 +1814,7 @@ void Temperature::mintemp_error(const heater_id_t heater_id) {
18141814
// Make sure temperature is decreasing
18151815
if (watch_cooler.elapsed(ms)) { // Time to check the cooler?
18161816
if (degCooler() > watch_cooler.target) // Failed to decrease enough?
1817-
_temp_error(H_COOLER, GET_TEXT_F(MSG_COOLING_FAILED), GET_TEXT_F(MSG_COOLING_FAILED));
1817+
_temp_error(H_COOLER, GET_EN_TEXT_F(MSG_COOLING_FAILED), GET_TEXT_F(MSG_COOLING_FAILED));
18181818
else
18191819
start_watching_cooler(); // Start again if the target is still far off
18201820
}

0 commit comments

Comments
 (0)