summaryrefslogtreecommitdiff
path: root/src/newgrf_station.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-05-24 22:41:50 +0000
committerrubidium <rubidium@openttd.org>2007-05-24 22:41:50 +0000
commit821e58ac9514f7fcd43e01115c4dc2a09b4ee45f (patch)
tree4ec491716328387ce65a5c1f45b836b6f5f57ce2 /src/newgrf_station.cpp
parentd0a39a231a6c459a85cabb72fc7d4de8a24d9c93 (diff)
downloadopenttd-821e58ac9514f7fcd43e01115c4dc2a09b4ee45f.tar.xz
(svn r9914) -Codechange: prepare GTTS and the pathfinders to handle multiple road types on a single tile.
Diffstat (limited to 'src/newgrf_station.cpp')
-rw-r--r--src/newgrf_station.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_station.cpp b/src/newgrf_station.cpp
index 3212a75e2..d00d925af 100644
--- a/src/newgrf_station.cpp
+++ b/src/newgrf_station.cpp
@@ -307,7 +307,7 @@ static uint32 GetRailContinuationInfo(TileIndex tile)
uint i;
for (i = 0; i < lengthof(x_dir); i++, dir++, diagdir++) {
- uint32 ts = GetTileTrackStatus(tile + TileOffsByDir(*dir), TRANSPORT_RAIL);
+ uint32 ts = GetTileTrackStatus(tile + TileOffsByDir(*dir), TRANSPORT_RAIL, 0);
if (ts != 0) {
/* If there is any track on the tile, set the bit in the second byte */
SETBIT(res, i + 8);