mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Open the load and save menus with the last used slot highlighted. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@4782 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
19396e39e6
commit
20e18ef41d
1 changed files with 8 additions and 3 deletions
|
@ -2978,6 +2978,7 @@ void M_ChangeMenu(MenuID_t cm)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
m_previousMenu = m_currentMenu;
|
m_previousMenu = m_currentMenu;
|
||||||
|
g_previousMenu = g_currentMenu;
|
||||||
m_currentMenu = search;
|
m_currentMenu = search;
|
||||||
g_currentMenu = cm;
|
g_currentMenu = cm;
|
||||||
}
|
}
|
||||||
|
@ -2986,7 +2987,14 @@ void M_ChangeMenu(MenuID_t cm)
|
||||||
|
|
||||||
switch (g_currentMenu)
|
switch (g_currentMenu)
|
||||||
{
|
{
|
||||||
|
case MENU_LOAD:
|
||||||
|
if (g_lastSaveSlot >= 0 && g_previousMenu != MENU_LOADVERIFY)
|
||||||
|
M_LOAD.currentEntry = g_lastSaveSlot;
|
||||||
|
break;
|
||||||
|
|
||||||
case MENU_SAVE:
|
case MENU_SAVE:
|
||||||
|
if (g_lastSaveSlot >= 0 && g_previousMenu != MENU_SAVEVERIFY)
|
||||||
|
M_SAVE.currentEntry = g_lastSaveSlot;
|
||||||
if (g_player[myconnectindex].ps->gm&MODE_GAME)
|
if (g_player[myconnectindex].ps->gm&MODE_GAME)
|
||||||
{
|
{
|
||||||
g_screenCapture = 1;
|
g_screenCapture = 1;
|
||||||
|
@ -4691,10 +4699,7 @@ void M_DisplayMenus(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!M_IsTextInput(m_currentMenu) && KB_KeyPressed(sc_Q))
|
if (!M_IsTextInput(m_currentMenu) && KB_KeyPressed(sc_Q))
|
||||||
{
|
|
||||||
g_previousMenu = g_currentMenu;
|
|
||||||
M_ChangeMenuAnimate(MENU_QUIT, MA_Advance);
|
M_ChangeMenuAnimate(MENU_QUIT, MA_Advance);
|
||||||
}
|
|
||||||
|
|
||||||
M_RunMenuInput(m_currentMenu);
|
M_RunMenuInput(m_currentMenu);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue