diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/lure/room.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lure/room.cpp b/engines/lure/room.cpp index be85e47430..d47fa2e372 100644 --- a/engines/lure/room.cpp +++ b/engines/lure/room.cpp @@ -166,7 +166,7 @@ void Room::checkRoomHotspots() { bool skipFlag = (entry->roomNumber != _roomNumber); if (!skipFlag) { - skipFlag = (((entry->flags & HOTSPOTFLAG_HIGHLIGHTED) == 0) && + skipFlag = (((entry->flags & HOTSPOTFLAG_FOUND) == 0) && ((entry->flags & HOTSPOTFLAG_SKIP) != 0)) || ((entry->flags & HOTSPOTFLAG_20) != 0); } @@ -218,7 +218,7 @@ void Room::checkRoomHotspots() { _hotspot = entry; _hotspotId = entry->hotspotId; _isExit = false; - entry->flags |= HOTSPOTFLAG_HIGHLIGHTED; + entry->flags |= HOTSPOTFLAG_FOUND; } } |