diff options
author | rubidium <rubidium@openttd.org> | 2009-06-21 21:08:20 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-06-21 21:08:20 +0000 |
commit | c8d13c521adf94680167eed416ca643c23b417c5 (patch) | |
tree | 99937301c0e9b5e93b55b6863ade4036b56af5ff | |
parent | 7ed618997f781439287abb720e1c1ed1e39b440d (diff) | |
download | openttd-c8d13c521adf94680167eed416ca643c23b417c5.tar.xz |
(svn r16620) -Fix (r16619): sometimes one misses the obvious :(
-rw-r--r-- | src/airport.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/airport.cpp b/src/airport.cpp index a65ebeab9..bca98b5fc 100644 --- a/src/airport.cpp +++ b/src/airport.cpp @@ -178,7 +178,7 @@ static const byte _airport_sections_commuter[] = { APT_RUNWAY_END_FENCE_SE, APT_RUNWAY_2, APT_RUNWAY_2, APT_RUNWAY_2, APT_RUNWAY_END_FENCE_SE }; -/** Tiles for _heliport */ +/** Tiles for Heliport */ static const byte _airport_sections_heliport[] = { APT_HELIPORT, }; @@ -198,7 +198,7 @@ static const byte _airport_sections_helistation[] = { const byte * const _airport_sections[] = { _airport_sections_country, // Country Airfield (small) _airport_sections_town, // City Airport (large) - _airport_sections_heliport, // _heliport + _airport_sections_heliport, // Heliport _airport_sections_metropolitan, // Metropolitain Airport (large) _airport_sections_international, // International Airport (xlarge) _airport_sections_commuter, // Commuter Airport (small) |