(svn r12745) -Codechange: a bit of naming conventions, introduce Is*DepotTile()

This commit is contained in:
smatz
2008-04-17 00:44:20 +00:00
parent 1367c90161
commit 9488db56d4
20 changed files with 70 additions and 65 deletions

View File

@@ -45,7 +45,7 @@ static bool IsRoad(TileIndex tile)
{
return
// MP_ROAD, but not a road depot?
(IsTileType(tile, MP_ROAD) && !IsTileDepotType(tile, TRANSPORT_ROAD)) ||
(IsTileType(tile, MP_ROAD) && !IsDepotTypeTile(tile, TRANSPORT_ROAD)) ||
(IsTileType(tile, MP_TUNNELBRIDGE) && GetTunnelBridgeTransportType(tile) == TRANSPORT_ROAD);
}