[Scummvm-git-logs] scummvm master -> 7efb8786ebc2a55787ef81737dbb105a60489702

dreammaster dreammaster at scummvm.org
Fri Mar 16 03:03:06 CET 2018


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
7efb8786eb XEEN: Western edge of Xeen was showing terrain rather than empty space


Commit: 7efb8786ebc2a55787ef81737dbb105a60489702
    https://github.com/scummvm/scummvm/commit/7efb8786ebc2a55787ef81737dbb105a60489702
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2018-03-15T22:03:00-04:00

Commit Message:
XEEN: Western edge of Xeen was showing terrain rather than empty space

Changed paths:
    engines/xeen/map.cpp


diff --git a/engines/xeen/map.cpp b/engines/xeen/map.cpp
index 63068cd..d8afa4d 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) {





More information about the Scummvm-git-logs mailing list