Create BIOS Info Overlay

This commit is contained in:
2024-03-24 21:54:18 -05:00
parent 1ae51f9aa4
commit a8fafdc32e
7 changed files with 65 additions and 1 deletions

View File

@@ -36,6 +36,7 @@ static const Menu::SimpleMenu::Entry MenuEntries[] = {
{"GTE Test"},
{"Font Cycler"},
{"Screen Center"},
{"BIOS Information"}
};
static const auto doener_fish = Make::SPRT(
@@ -94,6 +95,11 @@ static void setup() {
state_changer.asset_load = Assets::Overlay::load_screen_center;
state_changer.main = ScreenCenter::main;
break;
case 5:
state_changer.asset_load = Assets::Overlay::load_bios_info;
state_changer.main = BIOSInfo::main;
break;
}
},MenuEntries);
}