summaryrefslogtreecommitdiff
path: root/town_gui.c
diff options
context:
space:
mode:
authormatthijs <matthijs@openttd.org>2006-12-05 13:58:20 +0000
committermatthijs <matthijs@openttd.org>2006-12-05 13:58:20 +0000
commit9218fc16e6fff350e6209b6b90b8597fc431f00f (patch)
treee23ebc401e3e8f7037ad38701e00a6bf1fb61136 /town_gui.c
parent681f994d16a71813144352b3a6ef05a22cb8b3ff (diff)
downloadopenttd-9218fc16e6fff350e6209b6b90b8597fc431f00f.tar.xz
(svn r7372) - CodeChange: Rename all GetXXXArraySize() functions to GetNumXXX() and add GetMaxXXXIndex() functions. This prepares for the new pool interface.
Diffstat (limited to 'town_gui.c')
-rw-r--r--town_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/town_gui.c b/town_gui.c
index 03f87edad..1434edcdd 100644
--- a/town_gui.c
+++ b/town_gui.c
@@ -409,7 +409,7 @@ static void MakeSortedTownList(void)
uint n = 0;
/* Create array for sorting */
- _town_sort = realloc((void*)_town_sort, GetTownArraySize() * sizeof(_town_sort[0]));
+ _town_sort = realloc((void*)_town_sort, (GetMaxTownIndex() + 1) * sizeof(_town_sort[0]));
if (_town_sort == NULL)
error("Could not allocate memory for the town-sorting-list");