menu: Do not initialise textmode terminal if QUIET=yes. Addresses #269

This commit is contained in:
mintsuki 2023-04-26 23:49:22 +02:00
parent b58de84b8e
commit 27cf36fbc8
1 changed files with 3 additions and 1 deletions

View File

@ -593,7 +593,9 @@ static void menu_init_term(void) {
}
} else {
#if defined (BIOS)
vga_textmode_init(true);
if (!quiet) {
vga_textmode_init(true);
}
#endif
}
}