aboutsummaryrefslogtreecommitdiff
path: root/scumm/saveload.cpp
diff options
context:
space:
mode:
authorTravis Howell2006-02-04 09:38:51 +0000
committerTravis Howell2006-02-04 09:38:51 +0000
commitba2c097653c04645e5b96831387778f6dc06b891 (patch)
tree25d084d6af51b202ec21e75395d685a662f5e932 /scumm/saveload.cpp
parentcd24d93f7b5e2235134ede0854d3a95339c54578 (diff)
downloadscummvm-rg350-ba2c097653c04645e5b96831387778f6dc06b891.tar.gz
scummvm-rg350-ba2c097653c04645e5b96831387778f6dc06b891.tar.bz2
scummvm-rg350-ba2c097653c04645e5b96831387778f6dc06b891.zip
Actually active sprite table doesn't need to be saved.
svn-id: r20369
Diffstat (limited to 'scumm/saveload.cpp')
-rw-r--r--scumm/saveload.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/scumm/saveload.cpp b/scumm/saveload.cpp
index 8c9fa3753f..98b6a2db62 100644
--- a/scumm/saveload.cpp
+++ b/scumm/saveload.cpp
@@ -1293,7 +1293,7 @@ void ScummEngine_v90he::saveOrLoad(Serializer *s) {
MKLINE(ScummEngine_v90he, _curMaxSpriteId, sleInt32, VER(51)),
MKLINE(ScummEngine_v90he, _curSpriteId, sleInt32, VER(51)),
MKLINE(ScummEngine_v90he, _curSpriteGroupId, sleInt32, VER(51)),
- MKLINE(ScummEngine_v90he, _numSpritesToProcess, sleInt32, VER(51)),
+ MK_OBSOLETE(ScummEngine_v90he, _numSpritesToProcess, sleInt32, VER(51), VER(63)),
MKLINE(ScummEngine_v90he, _heObject, sleInt32, VER(51)),
MKLINE(ScummEngine_v90he, _heObjectNum, sleInt32, VER(51)),
MKLINE(ScummEngine_v90he, _hePaletteNum, sleInt32, VER(51)),
@@ -1304,9 +1304,7 @@ void ScummEngine_v90he::saveOrLoad(Serializer *s) {
s->saveLoadArrayOf(&_floodFillParams, 1, sizeof(_floodFillParams), floodFillEntries);
- _numSpritesToProcess = _sprite->_numSpritesToProcess;
s->saveLoadEntries(this, HE90Entries);
- _sprite->_numSpritesToProcess = _numSpritesToProcess;
}
void ScummEngine_v99he::saveOrLoad(Serializer *s) {