diff options
author | Max Horn | 2002-05-10 15:41:35 +0000 |
---|---|---|
committer | Max Horn | 2002-05-10 15:41:35 +0000 |
commit | 2c01ae8b6b5f14c776affcda02f02ec2a3075703 (patch) | |
tree | 3985ae508e0d3172035777d48b3cc3145a744e00 | |
parent | db07e6f73a5ab0ebce3f211df8474ba7a1687a53 (diff) | |
download | scummvm-rg350-2c01ae8b6b5f14c776affcda02f02ec2a3075703.tar.gz scummvm-rg350-2c01ae8b6b5f14c776affcda02f02ec2a3075703.tar.bz2 scummvm-rg350-2c01ae8b6b5f14c776affcda02f02ec2a3075703.zip |
a little comment
svn-id: r4262
-rw-r--r-- | scumm.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -212,11 +212,12 @@ struct CostumeData { }; struct ActorWalkData { - int16 destx,desty; + int16 destx,desty; // Final destination byte destbox; int16 destdir; byte curbox; - int16 x,y,newx,newy; + int16 x,y; // Current position + int16 newx,newy; // Next position on our way to the destination int32 XYFactor, YXFactor; uint16 xfrac,yfrac; int point3x, point3y; |