1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-24 06:59:10 +00:00

(svn r2485) Missed two uint -> TileIndex, thanks _Luca_

This commit is contained in:
tron
2005-06-24 17:41:08 +00:00
parent c12319535b
commit cea090af09
2 changed files with 2 additions and 3 deletions

View File

@@ -660,7 +660,7 @@ int32 CmdBuildRoadDepot(int x, int y, uint32 flags, uint32 p1, uint32 p2)
return cost + _price.build_road_depot;
}
static int32 RemoveRoadDepot(uint tile, uint32 flags)
static int32 RemoveRoadDepot(TileIndex tile, uint32 flags)
{
if (!CheckTileOwnership(tile) && _current_player != OWNER_WATER)
return CMD_ERROR;