From 38587b60f731ba36bf4c4dc2d9fc2ea9ce41ee0d Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 29 Jan 2005 15:12:40 +0000 Subject: (svn r1718) Use the enum TileType as parameter/return type for [GS]etTileType() instead of plain int. This makes it necessary to rename TileType() to GetTileType() because a type and a function may not share the same name. --- industry_cmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'industry_cmd.c') diff --git a/industry_cmd.c b/industry_cmd.c index 9836d16f7..149d7fc68 100644 --- a/industry_cmd.c +++ b/industry_cmd.c @@ -857,7 +857,7 @@ static const byte _plantfarmfield_type[] = {1, 1, 1, 1, 1, 3, 3, 4, 4, 4, 5, 5, static bool IsBadFarmFieldTile(TileIndex tile) { - switch (TileType(tile)) { + switch (GetTileType(tile)) { case MP_CLEAR: { byte m5 = _map5[tile] & 0x1C; return m5 == 0xC || m5 == 0x10; @@ -873,7 +873,7 @@ static bool IsBadFarmFieldTile(TileIndex tile) static bool IsBadFarmFieldTile2(TileIndex tile) { - switch (TileType(tile)) { + switch (GetTileType(tile)) { case MP_CLEAR: { byte m5 = _map5[tile] & 0x1C; return m5 == 0x10; -- cgit v1.2.3-54-g00ecf