summaryrefslogtreecommitdiff
path: root/economy.c
diff options
context:
space:
mode:
Diffstat (limited to 'economy.c')
-rw-r--r--economy.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/economy.c b/economy.c
index 261ed7186..e7dcfec64 100644
--- a/economy.c
+++ b/economy.c
@@ -47,7 +47,7 @@ void CheckSwitchToEuro(void)
void UpdatePlayerHouse(Player *p, uint score)
{
byte val;
- uint tile = p->location_of_house;
+ TileIndex tile = p->location_of_house;
if (tile == 0)
return;
@@ -792,7 +792,8 @@ void StartupEconomy(void)
Pair SetupSubsidyDecodeParam(Subsidy *s, bool mode)
{
- int tile, tile2;
+ TileIndex tile;
+ TileIndex tile2;
Industry *i;
Town *t;
Station *st;