changeset 19679:31ecdcc74072 draft

(svn r24588) -Codechange: No need to intermingle reservation-checks with railroad checks. (Juanjo)
author frosch <frosch@openttd.org>
date Sat, 13 Oct 2012 08:24:28 +0000
parents 1b99b0255e3d
children b3daa74e7c5f
files src/pathfinder/follow_track.hpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/pathfinder/follow_track.hpp
+++ b/src/pathfinder/follow_track.hpp
@@ -92,7 +92,7 @@
 	inline bool IsTram() { return IsRoadTT() && HasBit(RoadVehicle::From(m_veh)->compatible_roadtypes, ROADTYPE_TRAM); }
 	inline static bool IsRoadTT() { return TT() == TRANSPORT_ROAD; }
 	inline static bool Allow90degTurns() { return T90deg_turns_allowed_; }
-	inline static bool DoTrackMasking() { return IsRailTT() && Tmask_reserved_tracks; }
+	inline static bool DoTrackMasking() { return Tmask_reserved_tracks; }
 
 	/** Tests if a tile is a road tile with a single tramtrack (tram can reverse) */
 	inline DiagDirection GetSingleTramBit(TileIndex tile)