M600: remove dead code

The if statement doesn't do anything useful
so I propose it be removed before 3.13 release

Change in memory:
Flash: -30 bytes
SRAM: 0 bytes
This commit is contained in:
Guðni Már Gilbert 2023-04-29 23:43:27 +00:00
parent a354aad762
commit 92e5747469
1 changed files with 0 additions and 6 deletions

View File

@ -3524,12 +3524,6 @@ static void gcode_M600(bool automatic, float x_position, float y_position, float
MMU2::mmu2.eject_filament(MMU2::mmu2.get_current_tool(), false);
}
mmu_M600_wait_and_beep();
if (saved_printing) {
lcd_clear();
lcd_puts_at_P(0, 2, _T(MSG_PLEASE_WAIT));
//@@TODO mmu_command(MmuCmd::R0);
// manage_response(false, false);
}
}
mmu_M600_load_filament(automatic, HotendTempBckp);
}