menu: Use fallback terminal instead of panicking on gterm_init() fail
diff --git a/common/menu.c b/common/menu.c
index 20274d36..d52e9e8f 100644
--- a/common/menu.c
+++ b/common/menu.c
@@ -568,7 +568,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 {
@@ -854,7 +854,7 @@ timeout_aborted:
#if defined (BIOS)
vga_textmode_init(true);
#elif defined (UEFI)
- panic(true, "menu: Failed to initialise terminal");
+ term_fallback();
#endif
}
} else {
