mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 21:21:04 +00:00
- fixed: The loadgame menu responder did not check for an empty list of savegames.
SVN r2857 (trunk)
This commit is contained in:
parent
add5518a04
commit
77709f1847
1 changed files with 1 additions and 1 deletions
|
@ -1056,7 +1056,7 @@ bool DLoadMenu::MenuEvent (int mkey, bool fromcontroller)
|
|||
{
|
||||
return true;
|
||||
}
|
||||
if (Selected == -1)
|
||||
if (Selected == -1 || SaveGames.Size() == 0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue