aboutsummaryrefslogtreecommitdiff
path: root/scumm/saveload.cpp
diff options
context:
space:
mode:
authorMax Horn2004-01-15 19:25:17 +0000
committerMax Horn2004-01-15 19:25:17 +0000
commitac8243d22919a9da621daef429058d75b504c264 (patch)
tree6a1257b858c90ac6b94f0a1680415d978ecde093 /scumm/saveload.cpp
parentd45682f7c50a558ff6609e443ed70f786567ff72 (diff)
downloadscummvm-rg350-ac8243d22919a9da621daef429058d75b504c264.tar.gz
scummvm-rg350-ac8243d22919a9da621daef429058d75b504c264.tar.bz2
scummvm-rg350-ac8243d22919a9da621daef429058d75b504c264.zip
use Rect in struct VerbSlot
svn-id: r12413
Diffstat (limited to 'scumm/saveload.cpp')
-rw-r--r--scumm/saveload.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/scumm/saveload.cpp b/scumm/saveload.cpp
index d90d34341a..a3ab239b5b 100644
--- a/scumm/saveload.cpp
+++ b/scumm/saveload.cpp
@@ -326,14 +326,14 @@ void ScummEngine::saveOrLoad(Serializer *s, uint32 savegameVersion) {
const SaveLoadEntry *actorEntries = Actor::getSaveLoadEntries();
const SaveLoadEntry verbEntries[] = {
- MKLINE(VerbSlot, x, sleInt16, VER(8)),
- MKLINE(VerbSlot, y, sleInt16, VER(8)),
- MKLINE(VerbSlot, right, sleInt16, VER(8)),
- MKLINE(VerbSlot, bottom, sleInt16, VER(8)),
- MKLINE(VerbSlot, old.left, sleInt16, VER(8)),
- MKLINE(VerbSlot, old.top, sleInt16, VER(8)),
- MKLINE(VerbSlot, old.right, sleInt16, VER(8)),
- MKLINE(VerbSlot, old.bottom, sleInt16, VER(8)),
+ MKLINE(VerbSlot, curRect.left, sleInt16, VER(8)),
+ MKLINE(VerbSlot, curRect.top, sleInt16, VER(8)),
+ MKLINE(VerbSlot, curRect.right, sleInt16, VER(8)),
+ MKLINE(VerbSlot, curRect.bottom, sleInt16, VER(8)),
+ MKLINE(VerbSlot, oldRect.left, sleInt16, VER(8)),
+ MKLINE(VerbSlot, oldRect.top, sleInt16, VER(8)),
+ MKLINE(VerbSlot, oldRect.right, sleInt16, VER(8)),
+ MKLINE(VerbSlot, oldRect.bottom, sleInt16, VER(8)),
MKLINE_OLD(VerbSlot, verbid, sleByte, VER(8), VER(11)),
MKLINE(VerbSlot, verbid, sleInt16, VER(12)),