aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/nebular/globals_nebular.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-03-11 23:42:20 -0400
committerPaul Gilbert2014-03-11 23:42:20 -0400
commit709fcc6fac4e1449064c4ddd5de3c443d0290c93 (patch)
treee2ef6eabfb8bc82faffa847f26953524bf2c8fb7 /engines/mads/nebular/globals_nebular.h
parent2d99f761f0bb0a8db4468846f0643fbdc4da450a (diff)
downloadscummvm-rg350-709fcc6fac4e1449064c4ddd5de3c443d0290c93.tar.gz
scummvm-rg350-709fcc6fac4e1449064c4ddd5de3c443d0290c93.tar.bz2
scummvm-rg350-709fcc6fac4e1449064c4ddd5de3c443d0290c93.zip
MADS: Fix inter-frame wait loop
Diffstat (limited to 'engines/mads/nebular/globals_nebular.h')
-rw-r--r--engines/mads/nebular/globals_nebular.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mads/nebular/globals_nebular.h b/engines/mads/nebular/globals_nebular.h
index daa384f88f..31340446d2 100644
--- a/engines/mads/nebular/globals_nebular.h
+++ b/engines/mads/nebular/globals_nebular.h
@@ -33,7 +33,7 @@ namespace Nebular {
class Globals {
private:
- Common::Array<uint16> _flags;
+ Common::Array<int16> _flags;
public:
Common::Array<int> _spriteIndexes;
@@ -55,7 +55,7 @@ public:
/**
* Square brackets operator for accessing flags
*/
- uint16 &operator[](int idx) { return _flags[idx]; }
+ int16 &operator[](int idx) { return _flags[idx]; }
};
} // End of namespace Nebular