mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2025-01-31 10:40:33 +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;
|
return true;
|
||||||
}
|
}
|
||||||
if (Selected == -1)
|
if (Selected == -1 || SaveGames.Size() == 0)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue