aboutsummaryrefslogtreecommitdiff
path: root/scumm/saveload.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2005-05-23 02:00:49 +0000
committerEugene Sandulenko2005-05-23 02:00:49 +0000
commitb9e8e4080559f0ce9b249d3fb4c39db1431692f0 (patch)
tree795aef28cb3fdae36054ed096b2cfee8adc9f694 /scumm/saveload.cpp
parentf7e418d6384236c66ecb88190f815e0380d71382 (diff)
downloadscummvm-rg350-b9e8e4080559f0ce9b249d3fb4c39db1431692f0.tar.gz
scummvm-rg350-b9e8e4080559f0ce9b249d3fb4c39db1431692f0.tar.bz2
scummvm-rg350-b9e8e4080559f0ce9b249d3fb4c39db1431692f0.zip
Turn Wiz struct into class as requested.
svn-id: r18224
Diffstat (limited to 'scumm/saveload.cpp')
-rw-r--r--scumm/saveload.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/saveload.cpp b/scumm/saveload.cpp
index 5f541d0b71..a5064607f1 100644
--- a/scumm/saveload.cpp
+++ b/scumm/saveload.cpp
@@ -1052,7 +1052,7 @@ void ScummEngine_v70he::saveOrLoad(Serializer *s, uint32 savegameVersion) {
};
if (_heversion >= 71) {
- s->saveLoadArrayOf(_wiz._polygons, ARRAYSIZE(_wiz._polygons), sizeof(_wiz._polygons[0]), polygonEntries);
+ s->saveLoadArrayOf(_wiz->_polygons, ARRAYSIZE(_wiz->_polygons), sizeof(_wiz->_polygons[0]), polygonEntries);
}
s->saveLoadEntries(this, HE70Entries);