menu: Use fallback terminal instead of panicking on gterm_init() fail
diff --git a/common/menu.c b/common/menu.c
index c762461e..f5aa7785 100644
--- a/common/menu.c
+++ b/common/menu.c
@@ -591,7 +591,7 @@ static void menu_init_term(void) {
#if defined (BIOS)
vga_textmode_init(true);
#elif defined (UEFI)
- panic(true, "menu: Failed to initialise terminal");
+ term_fallback();
#endif
}
} else {
@@ -900,7 +900,7 @@ timeout_aborted:
#if defined (BIOS)
vga_textmode_init(true);
#elif defined (UEFI)
- panic(true, "menu: Failed to initialise terminal");
+ term_fallback();
#endif
}
} else {
