mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 20:31:30 +00:00
Add M_Options(0); to F4/F5/F7 code to prevent them going to Main Menu instead of SP/MP pause menus when the latter should be shown
This commit is contained in:
parent
d7b3795a82
commit
775ccde424
1 changed files with 3 additions and 0 deletions
|
@ -2203,6 +2203,7 @@ boolean M_Responder(event_t *ev)
|
||||||
if (modeattacking)
|
if (modeattacking)
|
||||||
return true;
|
return true;
|
||||||
M_StartControlPanel();
|
M_StartControlPanel();
|
||||||
|
M_Options(0);
|
||||||
currentMenu = &OP_SoundOptionsDef;
|
currentMenu = &OP_SoundOptionsDef;
|
||||||
itemOn = 0;
|
itemOn = 0;
|
||||||
return true;
|
return true;
|
||||||
|
@ -2212,6 +2213,7 @@ boolean M_Responder(event_t *ev)
|
||||||
if (modeattacking)
|
if (modeattacking)
|
||||||
return true;
|
return true;
|
||||||
M_StartControlPanel();
|
M_StartControlPanel();
|
||||||
|
M_Options(0);
|
||||||
M_VideoModeMenu(0);
|
M_VideoModeMenu(0);
|
||||||
return true;
|
return true;
|
||||||
#endif
|
#endif
|
||||||
|
@ -2223,6 +2225,7 @@ boolean M_Responder(event_t *ev)
|
||||||
if (modeattacking)
|
if (modeattacking)
|
||||||
return true;
|
return true;
|
||||||
M_StartControlPanel();
|
M_StartControlPanel();
|
||||||
|
M_Options(0);
|
||||||
M_SetupNextMenu(&OP_MainDef);
|
M_SetupNextMenu(&OP_MainDef);
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue