mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-17 23:44:22 +00:00
SCUMM: Only try to load savefile metadata from slots >= 0
svn-id: r33607
This commit is contained in:
parent
5f4c9f913f
commit
73cbcd33e0
@ -479,6 +479,9 @@ Graphics::Surface *ScummEngine::loadThumbnailFromSlot(int slot) {
|
||||
Common::SeekableReadStream *in;
|
||||
SaveGameHeader hdr;
|
||||
|
||||
if (slot < 0)
|
||||
return 0;
|
||||
|
||||
makeSavegameName(filename, slot, false);
|
||||
if (!(in = _saveFileMan->openForLoading(filename))) {
|
||||
return 0;
|
||||
@ -507,6 +510,9 @@ bool ScummEngine::loadInfosFromSlot(int slot, InfoStuff *stuff) {
|
||||
Common::SeekableReadStream *in;
|
||||
SaveGameHeader hdr;
|
||||
|
||||
if (slot < 0)
|
||||
return 0;
|
||||
|
||||
makeSavegameName(filename, slot, false);
|
||||
if (!(in = _saveFileMan->openForLoading(filename))) {
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user