diff --git a/bootloader/gfx/tui.c b/bootloader/gfx/tui.c index cc2965c..c15ddbc 100644 --- a/bootloader/gfx/tui.c +++ b/bootloader/gfx/tui.c @@ -157,14 +157,13 @@ void *tui_do_menu(menu_t *menu) gfx_con_setcol(0xFFCCCCCC, 1, 0xFF1B1B1B); gfx_putc('\n'); - // Print help and battery status. - gfx_con_setpos(0, 1127); - if (h_cfg.errors) - { - gfx_printf("%k Warning: %k", 0xFF800000, 0xFF555555); - if (h_cfg.errors & ERR_LIBSYS_LP0) - gfx_printf("Sleep mode library is missing!\n"); - } + // Print erros, help and battery status. + gfx_con_setpos(0, h_cfg.errors ? 1111 : 1127); + gfx_printf("%k Warning: %k", 0xFF800000, 0xFF555555); + if (h_cfg.errors & ERR_LIBSYS_LP0) + gfx_printf("Sleep mode library is missing!\n"); + gfx_printf(" Nyx is missing!\n"); + gfx_con_setpos(0, 1191); gfx_printf("%k VOL: Move up/down\n PWR: Select option%k", 0xFF555555, 0xFFCCCCCC);