From 6e142d523edcd9c96680593bc0bb4a20d23e8211 Mon Sep 17 00:00:00 2001 From: celestar Date: Fri, 25 Mar 2005 10:40:58 +0000 Subject: (svn r2055) -CodeChange: Begun introducting StationID --- station.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'station.h') diff --git a/station.h b/station.h index 6b144df15..bb1fe66ce 100644 --- a/station.h +++ b/station.h @@ -28,13 +28,15 @@ enum { ROAD_STOP_LIMIT = 8, }; +typedef uint16 StationID; + typedef struct RoadStop { TileIndex xy; bool used; byte status; uint32 index; uint16 slot[NUM_SLOTS]; - uint16 station; //XXX should be StationIndex + StationID station; uint8 type; struct RoadStop *next; struct RoadStop *prev; @@ -72,7 +74,7 @@ struct Station { //uint16 airport_flags; uint32 airport_flags; - uint16 index; + StationID index; VehicleID last_vehicle; GoodsEntry goods[NUM_CARGO]; @@ -131,7 +133,7 @@ extern MemoryPool _station_pool; /** * Get the pointer to the station with index 'index' */ -static inline Station *GetStation(uint index) +static inline Station *GetStation(StationID index) { return (Station*)GetItemFromPool(&_station_pool, index); } -- cgit v1.2.3-54-g00ecf