summaryrefslogtreecommitdiff
path: root/aircraft_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-06-24 12:38:35 +0000
committertron <tron@openttd.org>2005-06-24 12:38:35 +0000
commita733fede9b21d5e74a007ed64263bc07535ee25c (patch)
tree17004bd894946da466a10e50a86ff66225cf8896 /aircraft_gui.c
parent6699ee79d3c1d58be04351cc2bc18c683f4655dd (diff)
downloadopenttd-a733fede9b21d5e74a007ed64263bc07535ee25c.tar.xz
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
Diffstat (limited to 'aircraft_gui.c')
-rw-r--r--aircraft_gui.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/aircraft_gui.c b/aircraft_gui.c
index c6c03f5c6..2fd970443 100644
--- a/aircraft_gui.c
+++ b/aircraft_gui.c
@@ -71,7 +71,7 @@ static void DrawAircraftImage(const Vehicle *v, int x, int y, VehicleID selectio
}
}
-void CcBuildAircraft(bool success, uint tile, uint32 p1, uint32 p2)
+void CcBuildAircraft(bool success, TileIndex tile, uint32 p1, uint32 p2)
{
Vehicle *v;
@@ -206,7 +206,7 @@ static const WindowDesc _new_aircraft_desc = {
NewAircraftWndProc
};
-static void ShowBuildAircraftWindow(uint tile)
+static void ShowBuildAircraftWindow(TileIndex tile)
{
Window *w;
@@ -506,7 +506,8 @@ static void AircraftViewWndProc(Window *w, WindowEvent *e)
StringID str;
{
- uint tile = v->tile;
+ TileIndex tile = v->tile;
+
if (IsTileType(tile, MP_STATION) &&
(_map5[tile] == 32 || _map5[tile] == 65) &&
v->vehstatus&VS_STOPPED)
@@ -626,7 +627,7 @@ void ShowAircraftViewWindow(Vehicle *v)
static void DrawAircraftDepotWindow(Window *w)
{
- uint tile;
+ TileIndex tile;
Vehicle *v;
int num,x,y;
@@ -677,7 +678,7 @@ static void DrawAircraftDepotWindow(Window *w)
static int GetVehicleFromAircraftDepotWndPt(Window *w, int x, int y, Vehicle **veh) {
uint xt,row,xm,ym;
Vehicle *v;
- uint tile;
+ TileIndex tile;
int pos;
xt = x / 74;
@@ -844,7 +845,7 @@ static const WindowDesc _aircraft_depot_desc = {
};
-void ShowAircraftDepotWindow(uint tile)
+void ShowAircraftDepotWindow(TileIndex tile)
{
Window *w;
@@ -1028,7 +1029,7 @@ static void PlayerAircraftWndProc(Window *w, WindowEvent *e)
} break;
case 9: { /* Build new Vehicle */
- uint tile;
+ TileIndex tile;
if (!IsWindowOfPrototype(w, _player_aircraft_widgets))
break;