(svn r12753) -Codechange: do not use IsDepotTypeTile() where simpler function can be used
This commit is contained in:
@@ -170,10 +170,10 @@ static inline bool CanAccessTileInDir(TileIndex tile, DiagDirection side, Transp
|
||||
{
|
||||
if (tracktype == TRANSPORT_RAIL) {
|
||||
/* depot from wrong side */
|
||||
if (IsDepotTypeTile(tile, TRANSPORT_RAIL) && GetRailDepotDirection(tile) != side) return false;
|
||||
if (IsRailDepotTile(tile) && GetRailDepotDirection(tile) != side) return false;
|
||||
} else if (tracktype == TRANSPORT_ROAD) {
|
||||
/* depot from wrong side */
|
||||
if (IsDepotTypeTile(tile, TRANSPORT_ROAD) && GetRoadDepotDirection(tile) != side) return false;
|
||||
if (IsRoadDepotTile(tile) && GetRoadDepotDirection(tile) != side) return false;
|
||||
/* non-driverthrough road station from wrong side */
|
||||
if (IsStandardRoadStopTile(tile) && GetRoadStopDir(tile) != side) return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user