fixup
This commit is contained in:
parent
62810c5a7c
commit
5dc539cda5
|
|
@ -455,12 +455,12 @@ uint8_t lcdui_print_extruder(void) {
|
|||
lcd_space(1);
|
||||
if (MMU2::mmu2.get_current_tool() == MMU2::mmu2.get_tool_change_tool()) {
|
||||
lcd_putc('F');
|
||||
lcd_putc(MMU2::mmu2.get_current_tool() == (uint8_t)MMU2::FILAMENT_UNKNOWN ? '?' : MMU2::mmu2.get_current_tool() + 1);
|
||||
lcd_putc(MMU2::mmu2.get_current_tool() == (uint8_t)MMU2::FILAMENT_UNKNOWN ? '?' : MMU2::mmu2.get_current_tool() + '1');
|
||||
chars += 2;
|
||||
} else {
|
||||
lcd_putc(MMU2::mmu2.get_current_tool() == (uint8_t)MMU2::FILAMENT_UNKNOWN ? '?' : MMU2::mmu2.get_current_tool() + 1);
|
||||
lcd_putc(MMU2::mmu2.get_current_tool() == (uint8_t)MMU2::FILAMENT_UNKNOWN ? '?' : MMU2::mmu2.get_current_tool() + '1');
|
||||
lcd_putc('>');
|
||||
lcd_putc(MMU2::mmu2.get_tool_change_tool() == (uint8_t)MMU2::FILAMENT_UNKNOWN ? '?' : MMU2::mmu2.get_tool_change_tool() + 1);
|
||||
lcd_putc(MMU2::mmu2.get_tool_change_tool() == (uint8_t)MMU2::FILAMENT_UNKNOWN ? '?' : MMU2::mmu2.get_tool_change_tool() + '1');
|
||||
chars += 3;
|
||||
}
|
||||
return chars;
|
||||
|
|
|
|||
Loading…
Reference in New Issue