diff options
author | Ludvig Strigeus | 2002-04-19 08:21:56 +0000 |
---|---|---|
committer | Ludvig Strigeus | 2002-04-19 08:21:56 +0000 |
commit | 2f5c7c135d60f65b9778e925247a0bc9c43dac0b (patch) | |
tree | fd7ba1fd60e7dc62bf2e5549374c67b390c5f5d9 | |
parent | c8cb0e6bf6e62788cdde19309414ea65aaf0b2a1 (diff) | |
download | scummvm-rg350-2f5c7c135d60f65b9778e925247a0bc9c43dac0b.tar.gz scummvm-rg350-2f5c7c135d60f65b9778e925247a0bc9c43dac0b.tar.bz2 scummvm-rg350-2f5c7c135d60f65b9778e925247a0bc9c43dac0b.zip |
fixed actor walk bug in monte carlo
svn-id: r4002
-rw-r--r-- | scumm.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -106,8 +106,8 @@ struct CodeHeader { byte x,y,w,h; byte flags; byte parent; - uint16 walk_x; - uint16 walk_y; + int16 walk_x; + int16 walk_y; byte actordir; } GCC_PACK v5; @@ -182,7 +182,7 @@ class ObjectData { public: uint32 offs_obim_to_room; uint32 offs_obcd_to_room; - uint16 walk_x, walk_y; + int16 walk_x, walk_y; uint16 obj_nr; int16 x_pos; int16 y_pos; |