mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 00:15:30 +00:00
Original load/save screen fix from Hibernatus
Allows indy3ega/loom screens to work, although load/save are stuba. svn-id: r10167
This commit is contained in:
parent
651978bb92
commit
c8876de192
@ -891,8 +891,12 @@ void Scumm_v5::saveVars() {
|
||||
warning("stub saveVars to %s", _scriptPointer);
|
||||
_scriptPointer += a + 1;
|
||||
break;
|
||||
case 0x04:
|
||||
return;
|
||||
break;
|
||||
case 0x1F: // close file
|
||||
warning("stub saveVars close file");
|
||||
return;
|
||||
break;
|
||||
}
|
||||
|
||||
@ -922,8 +926,12 @@ void Scumm_v5::loadVars() {
|
||||
warning("stub loadVars from %s", _scriptPointer);
|
||||
_scriptPointer += a + 1;
|
||||
break;
|
||||
case 0x04:
|
||||
return;
|
||||
break;
|
||||
case 0x1F: // close file
|
||||
warning("stub loadVars close file");
|
||||
return;
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user