aboutsummaryrefslogtreecommitdiff
path: root/scumm/saveload.cpp
diff options
context:
space:
mode:
authorMax Horn2003-05-05 12:09:22 +0000
committerMax Horn2003-05-05 12:09:22 +0000
commit15ba8da46bd3a803d0adf0fe70b648ffb1bfd8dd (patch)
tree2305b0996d6d911e88bd76bf317fc8592d0552bb /scumm/saveload.cpp
parent37159f9b4ecc34345730eae81fb98c6162c5deb8 (diff)
downloadscummvm-rg350-15ba8da46bd3a803d0adf0fe70b648ffb1bfd8dd.tar.gz
scummvm-rg350-15ba8da46bd3a803d0adf0fe70b648ffb1bfd8dd.tar.bz2
scummvm-rg350-15ba8da46bd3a803d0adf0fe70b648ffb1bfd8dd.zip
renamed XYFactor/YXFactor to XYFactor, YXFactor/deltaYFactor (they denote how much to move each step in the x/y direction); added several FIXME comments (after 0.4.0 we really shold revise this code)
svn-id: r7344
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 79bbafde8d..c578f59dfc 100644
--- a/scumm/saveload.cpp
+++ b/scumm/saveload.cpp
@@ -336,8 +336,8 @@ void Scumm::saveOrLoad(Serializer *s, uint32 savegameVersion) {
MKLINE(Actor, walkdata.y, sleInt16, VER_V8),
MKLINE(Actor, walkdata.newx, sleInt16, VER_V8),
MKLINE(Actor, walkdata.newy, sleInt16, VER_V8),
- MKLINE(Actor, walkdata.XYFactor, sleInt32, VER_V8),
- MKLINE(Actor, walkdata.YXFactor, sleInt32, VER_V8),
+ MKLINE(Actor, walkdata.deltaXFactor, sleInt32, VER_V8),
+ MKLINE(Actor, walkdata.deltaYFactor, sleInt32, VER_V8),
MKLINE(Actor, walkdata.xfrac, sleUint16, VER_V8),
MKLINE(Actor, walkdata.yfrac, sleUint16, VER_V8),