summaryrefslogtreecommitdiff
path: root/openttd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-10-28 11:55:29 +0000
committertron <tron@openttd.org>2006-10-28 11:55:29 +0000
commite397b721cda24507068a2028db58f28d7198fce9 (patch)
tree0353b720b14d64966c30ec3e7f905a9eecfa4aca /openttd.c
parent02ae75b380ee26b7c12837b28f753894522fb0a6 (diff)
downloadopenttd-e397b721cda24507068a2028db58f28d7198fce9.tar.xz
(svn r6986) Use the pool macros for the Town pool
Diffstat (limited to 'openttd.c')
-rw-r--r--openttd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openttd.c b/openttd.c
index ef9e3a95b..6750c509b 100644
--- a/openttd.c
+++ b/openttd.c
@@ -254,7 +254,7 @@ static void InitializeDynamicVariables(void)
static void UnInitializeDynamicVariables(void)
{
/* Dynamic stuff needs to be free'd somewhere... */
- CleanPool(&_town_pool);
+ CleanPool(&_Town_pool);
CleanPool(&_Industry_pool);
CleanPool(&_Station_pool);
CleanPool(&_Vehicle_pool);