diff options
author | matthijs <matthijs@openttd.org> | 2006-12-05 13:58:20 +0000 |
---|---|---|
committer | matthijs <matthijs@openttd.org> | 2006-12-05 13:58:20 +0000 |
commit | e6ade36de112f7a5a89513278e6784ba4f26c79f (patch) | |
tree | e23ebc401e3e8f7037ad38701e00a6bf1fb61136 /ai/default | |
parent | 75ec6d9b777400031fc90b82c8b056166365567b (diff) | |
download | openttd-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 'ai/default')
-rw-r--r-- | ai/default/default.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ai/default/default.c b/ai/default/default.c index 496a17a62..f21a9174a 100644 --- a/ai/default/default.c +++ b/ai/default/default.c @@ -3586,8 +3586,8 @@ static void AiStateRemoveStation(Player *p) p->ai.state = AIS_1; // Get a list of all stations that are in use by a vehicle - in_use = malloc(GetStationArraySize()); - memset(in_use, 0, GetStationArraySize()); + in_use = malloc(GetMaxStationIndex() + 1); + memset(in_use, 0, GetMaxStationIndex() + 1); FOR_ALL_ORDERS(ord) { if (ord->type == OT_GOTO_STATION) in_use[ord->dest] = 1; } |