diff options
author | Paul Gilbert | 2006-09-03 05:03:50 +0000 |
---|---|---|
committer | Paul Gilbert | 2006-09-03 05:03:50 +0000 |
commit | e5fcd5ff2d01118ffc155f859e7b38566ac8f2cb (patch) | |
tree | e3e7cc2b584ee5c1a87a8d7538a14611d07b51e3 /engines/lure | |
parent | 3b994a6a78eed02ff264f75de6ca8bad2ee062b7 (diff) | |
download | scummvm-rg350-e5fcd5ff2d01118ffc155f859e7b38566ac8f2cb.tar.gz scummvm-rg350-e5fcd5ff2d01118ffc155f859e7b38566ac8f2cb.tar.bz2 scummvm-rg350-e5fcd5ff2d01118ffc155f859e7b38566ac8f2cb.zip |
Changed name of HOTSPOTFLAG_HIGHLIGHTED to HOTSPOTFLAG_FOUND to make it's use clearer
svn-id: r23824
Diffstat (limited to 'engines/lure')
-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; } } |