diff options
Diffstat (limited to 'town_gui.c')
-rw-r--r-- | town_gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/town_gui.c b/town_gui.c index 29f3f3865..cc0b0d240 100644 --- a/town_gui.c +++ b/town_gui.c @@ -410,7 +410,7 @@ static void MakeSortedTownList(void) uint n = 0; /* Create array for sorting */ - _town_sort = realloc((void*)_town_sort, GetTownPoolSize() * sizeof(_town_sort[0])); + _town_sort = realloc((void*)_town_sort, GetTownArraySize() * sizeof(_town_sort[0])); if (_town_sort == NULL) error("Could not allocate memory for the town-sorting-list"); |