(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"

This commit is contained in:
tron
2005-06-24 12:38:35 +00:00
parent 3448729ff3
commit 3154e7148d
63 changed files with 536 additions and 495 deletions

View File

@@ -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;