From 9218fc16e6fff350e6209b6b90b8597fc431f00f Mon Sep 17 00:00:00 2001 From: matthijs Date: Tue, 5 Dec 2006 13:58:20 +0000 Subject: (svn r7372) - CodeChange: Rename all GetXXXArraySize() functions to GetNumXXX() and add GetMaxXXXIndex() functions. This prepares for the new pool interface. --- station.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'station.h') diff --git a/station.h b/station.h index 1187c1f35..2018f0777 100644 --- a/station.h +++ b/station.h @@ -144,13 +144,18 @@ void ResortStationLists(void); DECLARE_OLD_POOL(Station, Station, 6, 1000) -static inline StationID GetStationArraySize(void) +static inline StationID GetMaxStationIndex(void) { /* TODO - This isn't the real content of the function, but * with the new pool-system this will be replaced with one that - * _really_ returns the highest index + 1. Now it just returns + * _really_ returns the highest index. Now it just returns * the next safe value we are sure about everything is below. */ + return GetStationPoolSize() - 1; +} + +static inline uint GetNumStations(void) +{ return GetStationPoolSize(); } -- cgit v1.2.3-54-g00ecf