summaryrefslogtreecommitdiff
path: root/town_cmd.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-04-18 18:48:50 +0000
committerpeter1138 <peter1138@openttd.org>2006-04-18 18:48:50 +0000
commit100cc6fea7515f6c6706960678c7de6cdb438056 (patch)
tree07455a17b9de0227444751069ab0ca9276a82252 /town_cmd.c
parent52b6524e05214d42b4da1562d353056907d3c1b0 (diff)
downloadopenttd-100cc6fea7515f6c6706960678c7de6cdb438056.tar.xz
(svn r4471) - Pools: Add a facility for calling a custom function during pool block clean up.
Diffstat (limited to 'town_cmd.c')
-rw-r--r--town_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/town_cmd.c b/town_cmd.c
index b78096253..b6afb74a5 100644
--- a/town_cmd.c
+++ b/town_cmd.c
@@ -45,7 +45,7 @@ static void TownPoolNewBlock(uint start_item)
}
/* Initialize the town-pool */
-MemoryPool _town_pool = { "Towns", TOWN_POOL_MAX_BLOCKS, TOWN_POOL_BLOCK_SIZE_BITS, sizeof(Town), &TownPoolNewBlock, 0, 0, NULL };
+MemoryPool _town_pool = { "Towns", TOWN_POOL_MAX_BLOCKS, TOWN_POOL_BLOCK_SIZE_BITS, sizeof(Town), &TownPoolNewBlock, NULL, 0, 0, NULL };
// Local
static int _grow_town_result;