Push a stack frame when Game::createmenu() is called

Unless it's the main menu, or unless it's not the same menu. Whether or
not the menu is the same is left up to the caller, because some menus
could be the same but use different names, so we can't simply
automatically check that the names are different and assume that they
aren't the same menu.
This commit is contained in:
Misa
2020-04-16 19:04:36 -07:00
committed by Ethan Lee
parent 58b9941d73
commit de0205e09b
2 changed files with 17 additions and 2 deletions

View File

@@ -115,7 +115,7 @@ public:
std::string timetstring(int t);
void createmenu(enum Menu::MenuName t);
void createmenu(enum Menu::MenuName t, bool samemenu = false);
void lifesequence();