Restored EndGameMenu as a pseudo-class
Fixes the following error: Attempting to open menu of unknown type 'EndGameMenu' At least Adventures of Square is using this class in main menu
This commit is contained in:
parent
d295186378
commit
91f8f5b556
3 changed files with 22 additions and 11 deletions
|
|
@ -411,6 +411,11 @@ void M_SetMenu(FName menu, int param)
|
|||
C_DoCommand("menu_quit");
|
||||
return;
|
||||
|
||||
case NAME_EndGameMenu:
|
||||
// The separate menu class no longer exists but the name still needs support for existing mods.
|
||||
void ActivateEndGameMenu();
|
||||
ActivateEndGameMenu();
|
||||
return;
|
||||
}
|
||||
|
||||
// End of special checks
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue