From 4ea53ad4bf5e7570597acea3749c8e9cccf2a389 Mon Sep 17 00:00:00 2001 From: VintagePC <53943260+vintagepc@users.noreply.github.com> Date: Sat, 18 Jun 2022 13:42:40 -0400 Subject: [PATCH] fix bug I introduced --- Firmware/mmu2_reporting.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Firmware/mmu2_reporting.cpp b/Firmware/mmu2_reporting.cpp index 226ee3ea9..84b2ff5a6 100644 --- a/Firmware/mmu2_reporting.cpp +++ b/Firmware/mmu2_reporting.cpp @@ -78,11 +78,11 @@ static void ReportErrorHookStaticRender(uint8_t ei) { lcd_update_enable(false); lcd_clear(); - ReportErrorHookSensorLineRender(); - // Print title and header lcd_printf_P(PSTR("%.20S\nprusa3d.com/ERR04%hu"), _T(PrusaErrorTitle(ei)), PrusaErrorCode(ei) ); + ReportErrorHookSensorLineRender(); + // Render the choices lcd_show_choices_prompt_P(two_choices ? LCD_LEFT_BUTTON_CHOICE : LCD_MIDDLE_BUTTON_CHOICE, _T(PrusaErrorButtonTitle(button_op_middle)), _T(two_choices ? PrusaErrorButtonMore() : PrusaErrorButtonTitle(button_op_right)), two_choices ? 10 : 7, two_choices ? nullptr : _T(PrusaErrorButtonMore())); }