[Scummvm-git-logs] scummvm master -> edef1d5076011fca2e0aff36923321ab11f584bc
dreammaster
dreammaster at scummvm.org
Thu Jan 18 00:33:33 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:
edef1d5076 XEEN: Fix display of water tiles on the outdoors minimap
Commit: edef1d5076011fca2e0aff36923321ab11f584bc
https://github.com/scummvm/scummvm/commit/edef1d5076011fca2e0aff36923321ab11f584bc
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2018-01-17T18:33:26-05:00
Commit Message:
XEEN: Fix display of water tiles on the outdoors minimap
Changed paths:
engines/xeen/interface_minimap.cpp
diff --git a/engines/xeen/interface_minimap.cpp b/engines/xeen/interface_minimap.cpp
index c9bbf10..4eb02fb 100644
--- a/engines/xeen/interface_minimap.cpp
+++ b/engines/xeen/interface_minimap.cpp
@@ -78,7 +78,7 @@ void InterfaceMinimap::drawOutdoorsMinimap() {
assert(v != INVALID_CELL);
frame = map.mazeDataCurrent()._surfaceTypes[v];
- if (frame && (map._currentSteppedOn || party._wizardEyeActive)) {
+ if (map._currentSteppedOn || party._wizardEyeActive) {
map._tileSprites.draw(1, frame, Common::Point(xp, yp));
}
}
More information about the Scummvm-git-logs
mailing list