aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/objects.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-04-26 03:45:28 -0500
committerPaul Gilbert2015-04-26 03:45:28 -0500
commit9044dd49dc2debd1c7d1fa4ea991320a1072235e (patch)
treec5fd6941a483515129650af5b46d325e66bb5a8e /engines/sherlock/objects.h
parentd7a8d701641600b896622f8b7abb728c4b4cc266 (diff)
downloadscummvm-rg350-9044dd49dc2debd1c7d1fa4ea991320a1072235e.tar.gz
scummvm-rg350-9044dd49dc2debd1c7d1fa4ea991320a1072235e.tar.bz2
scummvm-rg350-9044dd49dc2debd1c7d1fa4ea991320a1072235e.zip
SHERLOCK: Fix closing closet in Backstage scene
Diffstat (limited to 'engines/sherlock/objects.h')
-rw-r--r--engines/sherlock/objects.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sherlock/objects.h b/engines/sherlock/objects.h
index 2b2472fbbf..80b0b9d9f3 100644
--- a/engines/sherlock/objects.h
+++ b/engines/sherlock/objects.h
@@ -125,8 +125,8 @@ public:
enum { REVERSE_DIRECTION = 0x80 };
struct ActionType {
- int8 _cAnimNum;
- uint8 _cAnimSpeed; // if high bit set, play in reverse
+ int _cAnimNum;
+ int _cAnimSpeed; // if high bit set, play in reverse
Common::String _names[4];
void synchronize(Common::SeekableReadStream &s);