Create the Screen Center overlay

This commit is contained in:
2024-01-05 11:10:02 -06:00
parent 60c4c5e61f
commit ff9186ea67
7 changed files with 43 additions and 12 deletions

View File

@@ -33,7 +33,7 @@ struct StateChange {
static const Menu::SimpleMenu::Entry MenuEntries[] = {
{"Controller Test"},
{"GPU Test"},
{"Menu 3"},
{"Screen Center"},
{"Menu 4"},
{"Menu 5"}
};
@@ -70,6 +70,10 @@ static void setup() {
state_changer.asset_load = Assets::Overlay::load_gpu_test;
state_changer.main = GPUTest::main;
break;
case 2:
state_changer.asset_load = Assets::Overlay::load_screen_center;
state_changer.main = ScreenCenter::main;
}
},MenuEntries);
}