forked from mirror/OpenTTD
(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.
This commit is contained in:
@@ -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");
|
||||
}
|
||||
|
Reference in New Issue
Block a user