summaryrefslogtreecommitdiff
path: root/src/station_cmd.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-03-19 09:58:46 +0000
committeryexo <yexo@openttd.org>2010-03-19 09:58:46 +0000
commitf2743cd5ed72a2d6224ffa828aab796ed771cef2 (patch)
treeb8f2dc1b94e52007b88e9020d9ef0187b9b00ee7 /src/station_cmd.cpp
parent414071d07f787042364fec573030720ba664154e (diff)
downloadopenttd-f2743cd5ed72a2d6224ffa828aab796ed771cef2.tar.xz
(svn r19464) -Codechange: move GetHangarTile to Airport
Diffstat (limited to 'src/station_cmd.cpp')
-rw-r--r--src/station_cmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp
index fbae4b1a3..74ad7e060 100644
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -69,7 +69,7 @@ bool IsHangar(TileIndex t)
const AirportSpec *as = st->airport.GetSpec();
for (uint i = 0; i < as->nof_depots; i++) {
- if (st->GetHangarTile(i) == t) return true;
+ if (st->airport.GetHangarTile(i) == t) return true;
}
return false;
@@ -2296,7 +2296,7 @@ static CommandCost RemoveAirport(TileIndex tile, DoCommandFlag flags)
const AirportSpec *as = st->airport.GetSpec();
for (uint i = 0; i < as->nof_depots; ++i) {
DeleteWindowById(
- WC_VEHICLE_DEPOT, st->GetHangarTile(i)
+ WC_VEHICLE_DEPOT, st->airport.GetHangarTile(i)
);
}