aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/map.h')
-rw-r--r--engines/gob/map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/map.h b/engines/gob/map.h
index c550fe0add..606af141d0 100644
--- a/engines/gob/map.h
+++ b/engines/gob/map.h
@@ -142,13 +142,13 @@ public:
virtual inline int8 getPass(int x, int y, int heightOff = -1) {
if (heightOff == -1)
heightOff = _passWidth;
- return _vm->_util->readVariableByte((char *) (_passMap + y * heightOff + x));
+ return _passMap[y * heightOff + x];
}
virtual inline void setPass(int x, int y, int8 pass, int heightOff = -1) {
if (heightOff == -1)
heightOff = _passWidth;
- _vm->_util->writeVariableByte((char *) (_passMap + y * heightOff + x) , pass);
+ _passMap[y * heightOff + x] = pass;
}
Map_v2(GobEngine *vm);