aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorPaul Gilbert2018-03-15 22:03:00 -0400
committerPaul Gilbert2018-03-15 22:03:00 -0400
commit7efb8786ebc2a55787ef81737dbb105a60489702 (patch)
treea5891595dd1a590aafe8093d1cba3801c3fd12bc /engines
parentd348b5cb2fa16c68c659b319b2173de6f96670cf (diff)
downloadscummvm-rg350-7efb8786ebc2a55787ef81737dbb105a60489702.tar.gz
scummvm-rg350-7efb8786ebc2a55787ef81737dbb105a60489702.tar.bz2
scummvm-rg350-7efb8786ebc2a55787ef81737dbb105a60489702.zip
XEEN: Western edge of Xeen was showing terrain rather than empty space
Diffstat (limited to 'engines')
-rw-r--r--engines/xeen/map.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/map.cpp b/engines/xeen/map.cpp
index 63068cde7a..d8afa4d2a3 100644
--- a/engines/xeen/map.cpp
+++ b/engines/xeen/map.cpp
@@ -1300,7 +1300,7 @@ int Map::getCell(int idx) {
mapId = _mazeData[_mazeDataIndex]._surroundingMazes._east;
} else {
pt.x += 16;
- mapId = _mazeData[_mazeDataIndex]._surroundingMazes._east;
+ mapId = _mazeData[_mazeDataIndex]._surroundingMazes._west;
}
if (!mapId) {