mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
Add no-op menu_credits command for quake '2021 release' version
This commit is contained in:
parent
86c06eeb15
commit
95845b9d2e
1 changed files with 8 additions and 0 deletions
|
@ -2532,6 +2532,13 @@ void M_ServerList_Key (int k)
|
|||
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
/* Credits menu -- used by the 2021 re-release */
|
||||
|
||||
void M_Menu_Credits_f (void)
|
||||
{
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
/* Menu Subsystem */
|
||||
|
||||
|
@ -2551,6 +2558,7 @@ void M_Init (void)
|
|||
Cmd_AddCommand ("menu_video", M_Menu_Video_f);
|
||||
Cmd_AddCommand ("help", M_Menu_Help_f);
|
||||
Cmd_AddCommand ("menu_quit", M_Menu_Quit_f);
|
||||
Cmd_AddCommand ("menu_credits", M_Menu_Credits_f); // needed by the 2021 re-release
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue