aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/nebular/globals_nebular.h
diff options
context:
space:
mode:
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