diff options
-rw-r--r-- | engines/xeen/map.cpp | 4 |
1 files 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); |