summaryrefslogtreecommitdiff
path: root/depot.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 /depot.h
parent6699ee79d3c1d58be04351cc2bc18c683f4655dd (diff)
downloadopenttd-a733fede9b21d5e74a007ed64263bc07535ee25c.tar.xz
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
Diffstat (limited to 'depot.h')
-rw-r--r--depot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/depot.h b/depot.h
index 99541ceee..d26a09cef 100644
--- a/depot.h
+++ b/depot.h
@@ -112,9 +112,9 @@ static inline DiagDirection GetDepotDirection(TileIndex tile, TransportType type
}
}
-Depot *GetDepotByTile(uint tile);
+Depot *GetDepotByTile(TileIndex tile);
void InitializeDepot(void);
Depot *AllocateDepot(void);
-void DoDeleteDepot(uint tile);
+void DoDeleteDepot(TileIndex tile);
#endif /* DEPOT_H */