aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus/neighborhood/hotspotinfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pegasus/neighborhood/hotspotinfo.h')
-rwxr-xr-xengines/pegasus/neighborhood/hotspotinfo.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/pegasus/neighborhood/hotspotinfo.h b/engines/pegasus/neighborhood/hotspotinfo.h
index 3c958c9e35..d75e5e9bc7 100755
--- a/engines/pegasus/neighborhood/hotspotinfo.h
+++ b/engines/pegasus/neighborhood/hotspotinfo.h
@@ -51,18 +51,18 @@ public:
Entry() { hotspotRoom = kNoRoomID; }
bool isEmpty() { return hotspotRoom == kNoRoomID; }
- tHotSpotID hotspot;
- tHotSpotActivationID hotspotActivation;
+ HotSpotID hotspot;
+ HotSpotActivationID hotspotActivation;
// Location hot spot lives in:
- tRoomID hotspotRoom;
- tDirectionConstant hotspotDirection;
+ RoomID hotspotRoom;
+ DirectionConstant hotspotDirection;
// Extra to play if this is a "play extra" hot spot.
- tExtraID hotspotExtra;
+ ExtraID hotspotExtra;
// Item corresponding to this hot spot if it is an item-related hot spot.
- tItemID hotspotItem;
+ ItemID hotspotItem;
};
- Entry findEntry(tHotSpotID hotspot);
+ Entry findEntry(HotSpotID hotspot);
typedef Common::Array<Entry>::iterator iterator;
iterator begin() { return _entries.begin(); }