mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Fix F8 (#207)
This commit is contained in:
parent
05a1c94df4
commit
320eaae790
2 changed files with 4 additions and 2 deletions
|
@ -904,8 +904,9 @@ void LocalKeys(void)
|
|||
break;
|
||||
case sc_F8:
|
||||
keyFlushScans();
|
||||
gGameMenuMgr.Push(&menuOptions,-1);
|
||||
break;
|
||||
if (!gGameMenuMgr.m_bActive)
|
||||
gGameMenuMgr.Push(&menuOptionsDisplayMode, -1);
|
||||
return;
|
||||
case sc_F9:
|
||||
keyFlushScans();
|
||||
DoQuickLoad();
|
||||
|
|
|
@ -50,6 +50,7 @@ extern CGameMenu menuSorry2;
|
|||
|
||||
extern CGameMenu menuOptions;
|
||||
extern CGameMenu menuOptionsSound;
|
||||
extern CGameMenu menuOptionsDisplayMode;
|
||||
extern short gQuickLoadSlot;
|
||||
extern short gQuickSaveSlot;
|
||||
extern char strRestoreGameStrings[][16];
|
||||
|
|
Loading…
Reference in a new issue