Skip to content

Commit

Permalink
Fix max temp error message
Browse files Browse the repository at this point in the history
  • Loading branch information
bkerler authored and CZDanol committed Feb 15, 2024
1 parent 860909b commit b3ee47a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Marlin/Marlin/src/module/temperature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ void Temperature::max_temp_error(const heater_ind_t heater) {
#if HAS_TEMP_HEATBREAK
//we have multiple heartbreak thermistors and they have always the highest ID
if(heater >= H_HEATBREAK_E0){
_temp_error(heater, PSTR(MSG_T_MINTEMP), GET_TEXT(MSG_ERR_MAXTEMP_HEATBREAK));
_temp_error(heater, PSTR(MSG_T_MAXTEMP), GET_TEXT(MSG_ERR_MAXTEMP_HEATBREAK));
}
#endif
_temp_error(heater, PSTR(MSG_T_MAXTEMP), GET_TEXT(MSG_ERR_MAXTEMP));
Expand Down

0 comments on commit b3ee47a

Please sign in to comment.