summaryrefslogtreecommitdiff
path: root/station.h
diff options
context:
space:
mode:
Diffstat (limited to 'station.h')
-rw-r--r--station.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/station.h b/station.h
index 1a343410d..6d753183d 100644
--- a/station.h
+++ b/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.
*/