Changeset - r7835:b6ef2284c349
[Not reviewed]
master
0 1 0
truelight - 17 years ago 2007-11-05 17:50:10
truelight@openttd.org
(svn r11385) -Fix r11383: bool operation can be hard to translate for some people ;) (tnx fjb for noticing this bug ;))
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/roadveh_cmd.cpp
Show inline comments
 
@@ -1211,7 +1211,7 @@ static Trackdir RoadFindPathToDest(Vehic
 
	}
 

	
 
	/* Only one track to choose between? */
 
	if (KillFirstBit(trackdirs) != TRACKDIR_BIT_NONE) {
 
	if (KillFirstBit(trackdirs) == TRACKDIR_BIT_NONE) {
 
		return_track(FindFirstBit2x64(trackdirs));
 
	}
 

	
0 comments (0 inline, 0 general)