Skip to content
Snippets Groups Projects
Commit d0f2fde9 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Fix material preset type

parent 4275466f
No related merge requests found
......@@ -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));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment