summaryrefslogtreecommitdiff
path: root/ttd.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-02-04 14:45:32 +0000
committertruelight <truelight@openttd.org>2005-02-04 14:45:32 +0000
commit4f5255c36eb39744a0fb0ceda0364ff8d4d3524f (patch)
tree684f650c3072700fb0cee6a014fae1d38b365317 /ttd.c
parent97728357e442315962c62927032f1daa97ff107d (diff)
downloadopenttd-4f5255c36eb39744a0fb0ceda0364ff8d4d3524f.tar.xz
(svn r1787) -Add: Dynamic signs (euh.. yeah, this means you can built 64k signs)
Diffstat (limited to 'ttd.c')
-rw-r--r--ttd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ttd.c b/ttd.c
index 1f951b19d..f0239c608 100644
--- a/ttd.c
+++ b/ttd.c
@@ -496,7 +496,6 @@ static void InitializeDynamicVariables(void)
{
/* Dynamic stuff needs to be initialized somewhere... */
_roadstops_size = lengthof(_roadstops);
- _sign_size = lengthof(_sign_list);
_orders_size = lengthof(_orders);
_station_sort = NULL;
@@ -512,6 +511,7 @@ static void UnInitializeDynamicVariables(void)
CleanPool(&_industry_pool);
CleanPool(&_station_pool);
CleanPool(&_vehicle_pool);
+ CleanPool(&_sign_pool);
free(_station_sort);
free(_vehicle_sort);