summaryrefslogtreecommitdiff
path: root/graph_gui.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-22 20:41:26 +0000
committertruelight <truelight@openttd.org>2006-08-22 20:41:26 +0000
commit5fd9aeb12b75a3971e86e5b7d1701115f57fbc12 (patch)
treec177232d70dec4fb6d7cd2dbac79206e86ee2daa /graph_gui.c
parent2e0d16026b77d0ef2ed233f16beb25bbaf836941 (diff)
downloadopenttd-5fd9aeb12b75a3971e86e5b7d1701115f57fbc12.tar.xz
(svn r6055) -Codechange: added GetXXXArraySize, which returns HighestID + 1 (or, will do that).
It isn't the best name, but we couldn't find any better. This unifies the pool-system even more.
Diffstat (limited to 'graph_gui.c')
-rw-r--r--graph_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/graph_gui.c b/graph_gui.c
index 677952e0f..e41356aea 100644
--- a/graph_gui.c
+++ b/graph_gui.c
@@ -1123,7 +1123,7 @@ static void GlobalSortSignList(void)
uint n = 0;
/* Create array for sorting */
- _sign_sort = realloc(_sign_sort, GetSignPoolSize() * sizeof(_sign_sort[0]));
+ _sign_sort = realloc(_sign_sort, GetSignArraySize() * sizeof(_sign_sort[0]));
if (_sign_sort == NULL) {
error("Could not allocate memory for the sign-sorting-list");
}