1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-28 08:59:09 +00:00

(svn r8935) -Codechange: unification of track type between road and rail tiles, unification of ground type between normal rail tiles and depots/waypoints and removing the need for RailTileSubType.

This commit is contained in:
rubidium
2007-02-27 23:36:28 +00:00
parent fbd6a88d02
commit 4908115355
12 changed files with 108 additions and 114 deletions

View File

@@ -110,7 +110,7 @@ RailType GetTileRailType(TileIndex tile)
case MP_STREET:
/* rail/road crossing */
if (IsLevelCrossing(tile)) return GetRailTypeCrossing(tile);
if (IsLevelCrossing(tile)) return GetRailType(tile);
break;
case MP_STATION: