summaryrefslogtreecommitdiff
path: root/src/yapf
diff options
context:
space:
mode:
authortron <tron@openttd.org>2007-02-25 11:36:19 +0000
committertron <tron@openttd.org>2007-02-25 11:36:19 +0000
commit3ce4baa9fc9b8973503fdaea37a408ff0852c659 (patch)
tree7356de7ae644522ac46c52158203c96f0a69cb23 /src/yapf
parent1ce43c1a3754499902a2749f9db3c426595ab02f (diff)
downloadopenttd-3ce4baa9fc9b8973503fdaea37a408ff0852c659.tar.xz
(svn r8899) -Fix
Remove the unused second parameter from GetTileRailType()
Diffstat (limited to 'src/yapf')
-rw-r--r--src/yapf/follow_track.hpp2
-rw-r--r--src/yapf/yapf_costrail.hpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/yapf/follow_track.hpp b/src/yapf/follow_track.hpp
index 99c6ea20e..4e0a29a87 100644
--- a/src/yapf/follow_track.hpp
+++ b/src/yapf/follow_track.hpp
@@ -173,7 +173,7 @@ protected:
// rail transport is possible only on compatible rail types
if (IsRailTT()) {
- RailType rail_type = GetTileRailType(m_new_tile, TrackdirToTrack(DiagdirToDiagTrackdir(m_exitdir)));
+ RailType rail_type = GetTileRailType(m_new_tile);
if (!HASBIT(m_veh->u.rail.compatible_railtypes, rail_type)) {
// incompatible rail type
return false;
diff --git a/src/yapf/yapf_costrail.hpp b/src/yapf/yapf_costrail.hpp
index 4335c8a5b..9a37b28e5 100644
--- a/src/yapf/yapf_costrail.hpp
+++ b/src/yapf/yapf_costrail.hpp
@@ -192,7 +192,7 @@ public:
Trackdir trackdir = n.m_key.m_td;
TileType tile_type = GetTileType(tile);
- RailType rail_type = GetTileRailType(tile, TrackdirToTrack(trackdir));
+ RailType rail_type = GetTileRailType(tile);
bool target_seen = Yapf().PfDetectDestination(tile, trackdir);
@@ -254,7 +254,7 @@ public:
// if tail type changes, finish segment (cached segment can't contain more rail types)
{
- RailType new_rail_type = GetTileRailType(F.m_new_tile, TrackdirToTrack(FindFirstTrackdir(F.m_new_td_bits)));
+ RailType new_rail_type = GetTileRailType(F.m_new_tile);
if (new_rail_type != rail_type) {
break;
}