aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/dm.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/dm/dm.h')
-rw-r--r--engines/dm/dm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/dm.h b/engines/dm/dm.h
index 5a7e548448..19eda10dfd 100644
--- a/engines/dm/dm.h
+++ b/engines/dm/dm.h
@@ -106,7 +106,7 @@ public:
byte getCell() const { return _data >> 14; }
ThingType getType() const { return (ThingType)((_data >> 10) & 0xF); }
- uint16 getIndex() const { return _data & 0x1FF; }
+ uint16 getIndex() const { return _data & 0x3FF; }
uint16 toUint16() const { return _data; } // I don't like 'em cast operators
bool operator==(const Thing &rhs) const { return _data == rhs._data; }
bool operator!=(const Thing &rhs) const { return _data != rhs._data; }