summaryrefslogtreecommitdiff
path: root/station_cmd.c
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2006-04-07 09:37:04 +0000
committercelestar <celestar@openttd.org>2006-04-07 09:37:04 +0000
commitda095bc9412cea7ecdffffe0b561274d727b1f3b (patch)
treefc912bdc3afa74e0deb04764765341148b64e110 /station_cmd.c
parent1440451a6bbf1ab4e1be45a920dece78ce02fe5b (diff)
downloadopenttd-da095bc9412cea7ecdffffe0b561274d727b1f3b.tar.xz
(svn r4316) -Codechange: finished r4257 (forgot one variable there)
Diffstat (limited to 'station_cmd.c')
-rw-r--r--station_cmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/station_cmd.c b/station_cmd.c
index 8dcc1d700..86f47b77d 100644
--- a/station_cmd.c
+++ b/station_cmd.c
@@ -1480,7 +1480,7 @@ static const byte _airport_sections_heliport[] = {
66,
};
-static const byte * const _airport_map5_tiles[] = {
+static const byte * const _airport_sections[] = {
_airport_sections_country, // Country Airfield (small)
_airport_sections_town, // City Airport (large)
_airport_sections_heliport, // Heliport
@@ -1506,7 +1506,7 @@ int32 CmdBuildAirport(int x, int y, uint32 flags, uint32 p1, uint32 p2)
SET_EXPENSES_TYPE(EXPENSES_CONSTRUCTION);
/* Check if a valid, buildable airport was chosen for construction */
- if (p1 > lengthof(_airport_map5_tiles) || !HASBIT(GetValidAirports(), p1)) return CMD_ERROR;
+ if (p1 > lengthof(_airport_sections) || !HASBIT(GetValidAirports(), p1)) return CMD_ERROR;
tile = TileVirtXY(x, y);
@@ -1601,7 +1601,7 @@ int32 CmdBuildAirport(int x, int y, uint32 flags, uint32 p1, uint32 p2)
if (airport_upgrade) UpdateAirplanesOnNewStation(st);
{
- const byte *b = _airport_map5_tiles[p1];
+ const byte *b = _airport_sections[p1];
BEGIN_TILE_LOOP(tile_cur, w, h, tile) {
MakeAirport(tile_cur, st->owner, st->index, *b++);