aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2018-01-17 18:33:26 -0500
committerPaul Gilbert2018-01-17 18:33:26 -0500
commitedef1d5076011fca2e0aff36923321ab11f584bc (patch)
tree96daeff8c2c8c919e59419ad93b6a9db5c7fd834
parente20a46316588c161d7bd0d92c39e93e4339bc567 (diff)
downloadscummvm-rg350-edef1d5076011fca2e0aff36923321ab11f584bc.tar.gz
scummvm-rg350-edef1d5076011fca2e0aff36923321ab11f584bc.tar.bz2
scummvm-rg350-edef1d5076011fca2e0aff36923321ab11f584bc.zip
XEEN: Fix display of water tiles on the outdoors minimap
-rw-r--r--engines/xeen/interface_minimap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/interface_minimap.cpp b/engines/xeen/interface_minimap.cpp
index c9bbf10897..4eb02fb298 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));
}
}