summaryrefslogtreecommitdiff
path: root/players.c
diff options
context:
space:
mode:
Diffstat (limited to 'players.c')
-rw-r--r--players.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/players.c b/players.c
index 935101484..026bed851 100644
--- a/players.c
+++ b/players.c
@@ -248,7 +248,7 @@ void UpdatePlayerMoney32(Player *p)
p->player_money = (int32)p->money64;
}
-void GetNameOfOwner(byte owner, uint tile)
+void GetNameOfOwner(byte owner, TileIndex tile)
{
SetDParam(2, owner);
@@ -279,7 +279,7 @@ bool CheckOwnership(byte owner)
return false;
}
-bool CheckTileOwnership(uint tile)
+bool CheckTileOwnership(TileIndex tile)
{
byte owner = GetTileOwner(tile);
@@ -297,7 +297,7 @@ bool CheckTileOwnership(uint tile)
static void GenerateCompanyName(Player *p)
{
- uint tile;
+ TileIndex tile;
Town *t;
StringID str;
Player *pp;