summaryrefslogtreecommitdiff
path: root/waypoint.h
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 /waypoint.h
parent6699ee79d3c1d58be04351cc2bc18c683f4655dd (diff)
downloadopenttd-a733fede9b21d5e74a007ed64263bc07535ee25c.tar.xz
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
Diffstat (limited to 'waypoint.h')
-rw-r--r--waypoint.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/waypoint.h b/waypoint.h
index a7f9f968a..1b4c53a67 100644
--- a/waypoint.h
+++ b/waypoint.h
@@ -53,8 +53,8 @@ static inline bool IsRailWaypoint(byte m5)
return (m5 & 0xFC) == 0xC4;
}
-int32 RemoveTrainWaypoint(uint tile, uint32 flags, bool justremove);
-Station *ComposeWaypointStation(uint tile);
+int32 RemoveTrainWaypoint(TileIndex tile, uint32 flags, bool justremove);
+Station *ComposeWaypointStation(TileIndex tile);
Waypoint *GetWaypointByTile(TileIndex tile);
void ShowRenameWaypointWindow(Waypoint *cp);
void DrawWaypointSprite(int x, int y, int image, int railtype);