aboutsummaryrefslogtreecommitdiff
path: root/scumm/actor.h
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/actor.h
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/actor.h')
-rw-r--r--scumm/actor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/actor.h b/scumm/actor.h
index 7aaca0ac7a..d78cde17c8 100644
--- a/scumm/actor.h
+++ b/scumm/actor.h
@@ -43,7 +43,7 @@ struct ActorWalkData {
byte curbox;
int16 x, y; // Current position
int16 newx, newy; // Next position on our way to the destination
- int32 XYFactor, YXFactor;
+ int32 deltaXFactor, deltaYFactor;
uint16 xfrac, yfrac;
int point3x, point3y;
};