mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- fixed: The quicksave requester did not open the menu properly
This resulted in input not reaching it.
This commit is contained in:
parent
52e12702cf
commit
1aa72cfbbd
1 changed files with 1 additions and 2 deletions
|
@ -655,10 +655,9 @@ CCMD(quicksave)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
gi->MenuSound(ActivateSound);
|
|
||||||
|
|
||||||
FString tempstring = GStrings("QSPROMPT");
|
FString tempstring = GStrings("QSPROMPT");
|
||||||
tempstring.Substitute("%s", slot->SaveTitle.GetChars());
|
tempstring.Substitute("%s", slot->SaveTitle.GetChars());
|
||||||
|
M_StartControlPanel(true);
|
||||||
|
|
||||||
DMenu* newmenu = CreateMessageBoxMenu(DMenu::CurrentMenu, tempstring, 0, INT_MAX, false, NAME_None, [](bool res)
|
DMenu* newmenu = CreateMessageBoxMenu(DMenu::CurrentMenu, tempstring, 0, INT_MAX, false, NAME_None, [](bool res)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue