summaryrefslogtreecommitdiff
path: root/roadveh_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
commit3154e7148d00f0203760aefbc6f8a5bd210cc30c (patch)
tree17004bd894946da466a10e50a86ff66225cf8896 /roadveh_gui.c
parent3448729ff36ca9e91d91c256d9a5381ba901230b (diff)
downloadopenttd-3154e7148d00f0203760aefbc6f8a5bd210cc30c.tar.xz
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
Diffstat (limited to 'roadveh_gui.c')
-rw-r--r--roadveh_gui.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/roadveh_gui.c b/roadveh_gui.c
index 9c3bcf8c9..bb97d9289 100644
--- a/roadveh_gui.c
+++ b/roadveh_gui.c
@@ -410,7 +410,7 @@ static void DrawNewRoadVehWindow(Window *w)
}
}
-void CcBuildRoadVeh(bool success, uint tile, uint32 p1, uint32 p2)
+void CcBuildRoadVeh(bool success, TileIndex tile, uint32 p1, uint32 p2)
{
Vehicle *v;
@@ -526,7 +526,7 @@ static void ShowBuildRoadVehWindow(TileIndex tile)
static void DrawRoadDepotWindow(Window *w)
{
- uint tile;
+ TileIndex tile;
Vehicle *v;
int num,x,y;
Depot *depot;
@@ -753,7 +753,7 @@ static const WindowDesc _road_depot_desc = {
RoadDepotWndProc
};
-void ShowRoadDepotWindow(uint tile)
+void ShowRoadDepotWindow(TileIndex tile)
{
Window *w;
@@ -909,7 +909,7 @@ static void PlayerRoadVehWndProc(Window *w, WindowEvent *e)
} break;
case 9: { /* Build new Vehicle */
- uint tile;
+ TileIndex tile;
if (!IsWindowOfPrototype(w, _player_roadveh_widgets))
break;