From 97ae59fe1a0248b95dbfff27f84cfeb87742f050 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. --- disaster_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'disaster_cmd.c') diff --git a/disaster_cmd.c b/disaster_cmd.c index bd3955a9c..f31487de1 100644 --- a/disaster_cmd.c +++ b/disaster_cmd.c @@ -19,7 +19,7 @@ static void DisasterClearSquare(TileIndex tile) if (!EnsureNoVehicle(tile)) return; - switch (TileType(tile)) { + switch (GetTileType(tile)) { case MP_RAILWAY: if (IS_HUMAN_PLAYER(_map_owner[tile])) DoClearSquare(tile); break; -- cgit v1.2.3-54-g00ecf