diff options
author | Sven Hesse | 2007-02-06 19:55:21 +0000 |
---|---|---|
committer | Sven Hesse | 2007-02-06 19:55:21 +0000 |
commit | 8833cdb03fcb2d635bd05ca72854e35157a05ecd (patch) | |
tree | 4e6cc6e3f9d4146fea32787903514cedb771f77b /engines | |
parent | 1c9c972d055966988c0f4e130eb8f7b380bc365e (diff) | |
download | scummvm-rg350-8833cdb03fcb2d635bd05ca72854e35157a05ecd.tar.gz scummvm-rg350-8833cdb03fcb2d635bd05ca72854e35157a05ecd.tar.bz2 scummvm-rg350-8833cdb03fcb2d635bd05ca72854e35157a05ecd.zip |
Made Goblin::Gob_Object::order explicitely signed, should fix bug #1625292 (Wrong sprite in foreground)
svn-id: r25403
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gob/goblin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/goblin.h b/engines/gob/goblin.h index 0050c5744e..517b0a908f 100644 --- a/engines/gob/goblin.h +++ b/engines/gob/goblin.h @@ -79,7 +79,7 @@ public: Gob_StateLine *stateMach; // +28h Gob_StateLine *realStateMach; // +2ch char doAnim; // +30h - char order; // +31h + int8 order; // +31h char noTick; // +32h char toRedraw; // +33h char type; // +34h |