Changeset - r11035:8a2d5962fbd9
[Not reviewed]
master
0 1 0
rubidium - 15 years ago 2009-02-06 15:52:22
rubidium@openttd.org
(svn r15375) -Fix [FS#2605]: a tram circling around in a depot did never actually 'enter' the depot.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/roadveh_cmd.cpp
Show inline comments
 
@@ -1550,13 +1550,13 @@ again:
 
		Direction newdir;
 
		const RoadDriveEntry *rdp;
 

	
 
		uint turn_around_start_frame = RVC_TURN_AROUND_START_FRAME;
 

	
 
		RoadBits tram;
 
		if (v->u.road.roadtype == ROADTYPE_TRAM && CountBits(tram = GetAnyRoadBits(v->tile, ROADTYPE_TRAM, true)) == 1) {
 
		if (v->u.road.roadtype == ROADTYPE_TRAM && !IsRoadDepotTile(v->tile) && CountBits(tram = GetAnyRoadBits(v->tile, ROADTYPE_TRAM, true)) == 1) {
 
			/*
 
			 * The tram is turning around with one tram 'roadbit'. This means that
 
			 * it is using the 'big' corner 'drive data'. However, to support the
 
			 * trams to take a small corner, there is a 'turned' marker in the middle
 
			 * of the turning 'drive data'. When the tram took the long corner, we
 
			 * will still use the 'big' corner drive data, but we advance it one
0 comments (0 inline, 0 general)