summaryrefslogtreecommitdiff
path: root/station.h
diff options
context:
space:
mode:
Diffstat (limited to 'station.h')
-rw-r--r--station.h9
1 files changed, 7 insertions, 2 deletions
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();
}