diff options
author | Paul Gilbert | 2018-01-17 18:33:26 -0500 |
---|---|---|
committer | Paul Gilbert | 2018-01-17 18:33:26 -0500 |
commit | edef1d5076011fca2e0aff36923321ab11f584bc (patch) | |
tree | 96daeff8c2c8c919e59419ad93b6a9db5c7fd834 /engines/xeen | |
parent | e20a46316588c161d7bd0d92c39e93e4339bc567 (diff) | |
download | scummvm-rg350-edef1d5076011fca2e0aff36923321ab11f584bc.tar.gz scummvm-rg350-edef1d5076011fca2e0aff36923321ab11f584bc.tar.bz2 scummvm-rg350-edef1d5076011fca2e0aff36923321ab11f584bc.zip |
XEEN: Fix display of water tiles on the outdoors minimap
Diffstat (limited to 'engines/xeen')
-rw-r--r-- | engines/xeen/interface_minimap.cpp | 2 |
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)); } } |