summaryrefslogtreecommitdiff
path: root/economy.c
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
commit3154e7148d00f0203760aefbc6f8a5bd210cc30c (patch)
tree17004bd894946da466a10e50a86ff66225cf8896 /economy.c
parent3448729ff36ca9e91d91c256d9a5381ba901230b (diff)
downloadopenttd-3154e7148d00f0203760aefbc6f8a5bd210cc30c.tar.xz
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
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;