summaryrefslogtreecommitdiff
path: root/graph_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
commite6ade36de112f7a5a89513278e6784ba4f26c79f (patch)
treee23ebc401e3e8f7037ad38701e00a6bf1fb61136 /graph_gui.c
parent75ec6d9b777400031fc90b82c8b056166365567b (diff)
downloadopenttd-e6ade36de112f7a5a89513278e6784ba4f26c79f.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 '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 eedeb949d..2968e3aa9 100644
--- a/graph_gui.c
+++ b/graph_gui.c
@@ -1151,7 +1151,7 @@ static void GlobalSortSignList(void)
uint n = 0;
/* Create array for sorting */
- _sign_sort = realloc((void *)_sign_sort, GetSignArraySize() * sizeof(_sign_sort[0]));
+ _sign_sort = realloc((void *)_sign_sort, (GetMaxSignIndex() + 1)* sizeof(_sign_sort[0]));
if (_sign_sort == NULL) {
error("Could not allocate memory for the sign-sorting-list");
}