mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
Changed name of HOTSPOTFLAG_HIGHLIGHTED to HOTSPOTFLAG_FOUND to make it's use clearer
svn-id: r23824
This commit is contained in:
parent
3b994a6a78
commit
e5fcd5ff2d
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user