aboutsummaryrefslogtreecommitdiff
path: root/scumm/saveload.cpp
diff options
context:
space:
mode:
authorMax Horn2003-05-16 02:16:59 +0000
committerMax Horn2003-05-16 02:16:59 +0000
commit7d08aea4cc1f39462e5195da641fe876f4c9c8ad (patch)
tree461db2b916093a02c95165d2a4d04c33d5fb53d3 /scumm/saveload.cpp
parentbfb68f513a2133760b922ded3f5cf4c4f1bcc424 (diff)
downloadscummvm-rg350-7d08aea4cc1f39462e5195da641fe876f4c9c8ad.tar.gz
scummvm-rg350-7d08aea4cc1f39462e5195da641fe876f4c9c8ad.tar.bz2
scummvm-rg350-7d08aea4cc1f39462e5195da641fe876f4c9c8ad.zip
SentenceTab unk4/unk3 are the sentence objects (think of: 'Use objectA with objectB' or 'Give objectA to objectB' etc.); added a little more V2 sentence hackery; added a FIXME regarding some strange sentence code (accessing objectB before it is set) in script.cpp
svn-id: r7562
Diffstat (limited to 'scumm/saveload.cpp')
-rw-r--r--scumm/saveload.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/saveload.cpp b/scumm/saveload.cpp
index 852fe2e5a9..65d04baeb9 100644
--- a/scumm/saveload.cpp
+++ b/scumm/saveload.cpp
@@ -532,8 +532,8 @@ void Scumm::saveOrLoad(Serializer *s, uint32 savegameVersion) {
const SaveLoadEntry sentenceTabEntries[] = {
MKLINE(SentenceTab, verb, sleUint8, VER_V8),
MKLINE(SentenceTab, unk2, sleUint8, VER_V8),
- MKLINE(SentenceTab, unk4, sleUint16, VER_V8),
- MKLINE(SentenceTab, unk3, sleUint16, VER_V8),
+ MKLINE(SentenceTab, objectA, sleUint16, VER_V8),
+ MKLINE(SentenceTab, objectB, sleUint16, VER_V8),
MKLINE(SentenceTab, freezeCount, sleUint8, VER_V8),
MKEND()
};