From 5893672b80f00fced33c42e63471d68ba47d7dd4 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 11 Jan 2020 10:37:35 -0800 Subject: XEEN: Mine Alpha fix needed to apply to non-CD version as well --- engines/xeen/map.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/xeen/map.cpp b/engines/xeen/map.cpp index 22a85365df..9e6c7c1549 100644 --- a/engines/xeen/map.cpp +++ b/engines/xeen/map.cpp @@ -786,9 +786,9 @@ void Map::load(int mapId) { } else if (File::exists(mobName)) { // For surrounding maps, set up flags for whether objects are present - // WORKAROUND: In WOX CD Map 120, one of the maps for Deep Mine Alpha, + // WORKAROUND: In WOX Map 120, one of the maps for Deep Mine Alpha, // has invalid monster data. So to work around it, we just ignore it - if (!(mapId == 120 && g_vm->getIsCD() && g_vm->getGameID() == GType_WorldOfXeen)) { + if (!(mapId == 120 && g_vm->getGameID() == GType_WorldOfXeen)) { // Load the monster/object data File mobFile(mobName); XeenSerializer sMob(&mobFile, nullptr); -- cgit v1.2.3