Fix DGUS screen bug (#18320)

This commit is contained in:
George Fu
2020-06-16 15:38:22 +08:00
committed by GitHub
parent c81ef492e3
commit c4b11e03b9
3 changed files with 7 additions and 4 deletions

View File

@@ -592,7 +592,7 @@ void DGUSScreenVariableHandler::HandleManualExtrude(DGUS_VP_Variable &var, void
case VP_MOVE_E0: target_extruder = ExtUI::extruder_t::E0; break;
#endif
#if HOTENDS >= 2
case VP_MOVE_E1: target_extruder = ExtUI::extruder_t::E1; break
case VP_MOVE_E1: target_extruder = ExtUI::extruder_t::E1; break;
#endif
default: return;
}