summaryrefslogtreecommitdiff
path: root/ai/default/default.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-05-20 15:13:27 +0000
committertron <tron@openttd.org>2006-05-20 15:13:27 +0000
commitb5f433bf4cbbbb45d8487d04d2492ed7e269823d (patch)
treeed501eeb08a1ccb519796aec762515649521aa43 /ai/default/default.c
parentd955b49e1b35a154c2c79ee477c6aa61ae2f7c16 (diff)
downloadopenttd-b5f433bf4cbbbb45d8487d04d2492ed7e269823d.tar.xz
(svn r4918) Move the information about the size of airports from an global array into the struct which describes an airport
Diffstat (limited to 'ai/default/default.c')
-rw-r--r--ai/default/default.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ai/default/default.c b/ai/default/default.c
index b0915f10a..4b1bcfc92 100644
--- a/ai/default/default.c
+++ b/ai/default/default.c
@@ -3328,8 +3328,9 @@ static bool AiCheckAirportResources(TileIndex tile, const AiDefaultBlockData *p,
for (; p->mode == 0; p++) {
TileIndex tile2 = TILE_ADD(tile, ToTileIndexDiff(p->tileoffs));
- uint w = _airport_size_x[p->attr];
- uint h = _airport_size_y[p->attr];
+ const AirportFTAClass* airport = GetAirport(p->attr);
+ uint w = airport->size_x;
+ uint h = airport->size_y;
if (cargo & 0x80) {
GetProductionAroundTiles(values, tile2, w, h, rad);