Fix material preset type
This commit is contained in:
parent
4275466f49
commit
d0f2fde920
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ void GcodeSuite::M145() {
|
|||
if (material >= PREHEAT_COUNT)
|
||||
SERIAL_ERROR_MSG(STR_ERR_MATERIAL_INDEX);
|
||||
else {
|
||||
preset_t &mat = ui.material_preset[material];
|
||||
preheat_t &mat = ui.material_preset[material];
|
||||
#if HAS_HOTEND
|
||||
if (parser.seenval('H'))
|
||||
mat.hotend_temp = constrain(parser.value_int(), EXTRUDE_MINTEMP, (HEATER_0_MAXTEMP) - (HOTEND_OVERSHOOT));
|
||||
|
|
Reference in a new issue