summaryrefslogtreecommitdiff
path: root/openttd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-01-05 16:51:10 +0000
committertron <tron@openttd.org>2006-01-05 16:51:10 +0000
commit5ac1a89f924345f6c75a81423a41f95656070cc0 (patch)
treeb76c3575e24b071c5ff251860338785bbdefa1fe /openttd.c
parente272b03feea5b4c870dd4af5be9071c903c6173d (diff)
downloadopenttd-5ac1a89f924345f6c75a81423a41f95656070cc0.tar.xz
(svn r3366) Make an unnecessarily global variable local
Diffstat (limited to 'openttd.c')
-rw-r--r--openttd.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/openttd.c b/openttd.c
index 368d8b003..b18850069 100644
--- a/openttd.c
+++ b/openttd.c
@@ -231,7 +231,6 @@ static void InitializeDynamicVariables(void)
{
/* Dynamic stuff needs to be initialized somewhere... */
_station_sort = NULL;
- _vehicle_sort = NULL;
_town_sort = NULL;
_industry_sort = NULL;
}
@@ -247,7 +246,6 @@ static void UnInitializeDynamicVariables(void)
CleanPool(&_order_pool);
free(_station_sort);
- free(_vehicle_sort);
free(_town_sort);
free(_industry_sort);
}