mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-18 03:59:09 +00:00
(svn r4337) -Fix: A problem where GetRailType was called instead of GetRailTileType. Thanks to glx for noticing
This commit is contained in:
@@ -1799,7 +1799,7 @@ static void TileLoop_Track(TileIndex tile)
|
|||||||
byte old_ground;
|
byte old_ground;
|
||||||
byte new_ground;
|
byte new_ground;
|
||||||
|
|
||||||
if (GetRailType(tile) == RAIL_TYPE_DEPOT_WAYPOINT) {
|
if (GetRailTileType(tile) == RAIL_TYPE_DEPOT_WAYPOINT) {
|
||||||
old_ground = GB(_m[tile].m4, 0, 4);
|
old_ground = GB(_m[tile].m4, 0, 4);
|
||||||
} else {
|
} else {
|
||||||
old_ground = GB(_m[tile].m2, 0, 4);
|
old_ground = GB(_m[tile].m2, 0, 4);
|
||||||
@@ -1822,7 +1822,7 @@ static void TileLoop_Track(TileIndex tile)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Don't continue tile loop for depots
|
// Don't continue tile loop for depots
|
||||||
if (GetRailType(tile) == RAIL_TYPE_DEPOT_WAYPOINT) return;
|
if (GetRailTileType(tile) == RAIL_TYPE_DEPOT_WAYPOINT) return;
|
||||||
|
|
||||||
new_ground = RAIL_GROUND_GREEN;
|
new_ground = RAIL_GROUND_GREEN;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user