summaryrefslogtreecommitdiff
path: root/oldloader.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-10-28 11:48:21 +0000
committertron <tron@openttd.org>2006-10-28 11:48:21 +0000
commitf51d2a3311b56f9390c792324430305585644f0d (patch)
tree3ffe678fb18ee1f4bec34159eb8c4eec6d427815 /oldloader.c
parent470a054c061bbe8d3ec9160a52f79f6314bfa86a (diff)
downloadopenttd-f51d2a3311b56f9390c792324430305585644f0d.tar.xz
(svn r6983) Use the pool macros for the Station pool
Diffstat (limited to 'oldloader.c')
-rw-r--r--oldloader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/oldloader.c b/oldloader.c
index d9faba895..4bc40c2f0 100644
--- a/oldloader.c
+++ b/oldloader.c
@@ -635,7 +635,7 @@ static bool LoadOldStation(LoadgameState *ls, int num)
{
Station *st;
- if (!AddBlockIfNeeded(&_station_pool, num))
+ if (!AddBlockIfNeeded(&_Station_pool, num))
error("Stations: failed loading savegame: too many stations");
st = GetStation(num);