summaryrefslogtreecommitdiff
path: root/misc_gui.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 /misc_gui.c
parent3448729ff36ca9e91d91c256d9a5381ba901230b (diff)
downloadopenttd-3154e7148d00f0203760aefbc6f8a5bd210cc30c.tar.xz
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
Diffstat (limited to 'misc_gui.c')
-rw-r--r--misc_gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc_gui.c b/misc_gui.c
index 0f49dd739..624b122b5 100644
--- a/misc_gui.c
+++ b/misc_gui.c
@@ -30,7 +30,7 @@ typedef struct LandInfoData {
Town *town;
int32 costclear;
AcceptedCargo ac;
- uint tile;
+ TileIndex tile;
TileDesc td;
} LandInfoData;
@@ -115,7 +115,7 @@ static const WindowDesc _land_info_desc = {
LandInfoWndProc
};
-static void Place_LandInfo(uint tile)
+static void Place_LandInfo(TileIndex tile)
{
Player *p;
static LandInfoData lid;