summaryrefslogtreecommitdiff
path: root/depot.c
diff options
context:
space:
mode:
Diffstat (limited to 'depot.c')
-rw-r--r--depot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/depot.c b/depot.c
index 432405c2a..d62e2afdf 100644
--- a/depot.c
+++ b/depot.c
@@ -33,7 +33,7 @@ MemoryPool _depot_pool = { "Depots", DEPOT_POOL_MAX_BLOCKS, DEPOT_POOL_BLOCK_SIZ
*
* @return Returns the depot if the tile had a depot, else it returns NULL
*/
-Depot *GetDepotByTile(uint tile)
+Depot *GetDepotByTile(TileIndex tile)
{
Depot *depot;
@@ -73,7 +73,7 @@ Depot *AllocateDepot(void)
/**
* Delete a depot
*/
-void DoDeleteDepot(uint tile)
+void DoDeleteDepot(TileIndex tile)
{
Order order;
Depot *depot;