diff options
author | Paul Gilbert | 2018-03-15 22:03:00 -0400 |
---|---|---|
committer | Paul Gilbert | 2018-03-15 22:03:00 -0400 |
commit | 7efb8786ebc2a55787ef81737dbb105a60489702 (patch) | |
tree | a5891595dd1a590aafe8093d1cba3801c3fd12bc /engines | |
parent | d348b5cb2fa16c68c659b319b2173de6f96670cf (diff) | |
download | scummvm-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.cpp | 2 |
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) { |