(svn r6055) -Codechange: added GetXXXArraySize, which returns HighestID + 1 (or, will do that).
It isn't the best name, but we couldn't find any better. This unifies the pool-system even more.
This commit is contained in:
10
station.h
10
station.h
@@ -161,6 +161,16 @@ static inline uint16 GetStationPoolSize(void)
|
||||
return _station_pool.total_items;
|
||||
}
|
||||
|
||||
static inline StationID GetStationArraySize(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
|
||||
* the next safe value we are sure about everything is below.
|
||||
*/
|
||||
return GetStationPoolSize();
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a station really exists.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user