pathfind.c
branch0.4
changeset 10021 d239446c3e6e
parent 10013 b6dc91f0cd71
child 10027 801e66bae005
--- a/pathfind.c	Sat May 20 18:41:11 2006 +0000
+++ b/pathfind.c	Sat May 20 18:43:59 2006 +0000
@@ -766,8 +766,7 @@
 				// Check that the tile contains exactly one track
 				if (bits == 0 || KILL_FIRST_BIT(bits) != 0) break;
 
-				if ((IsTileType(tile, MP_STREET) && !HASBIT(tpf->railtypes, GB(_m[tile].m4, 0, 4))) ||
-				      !HASBIT(tpf->railtypes, GetRailType(tile))) {
+				if (IsTileType(tile, MP_STREET) ? !HASBIT(tpf->railtypes, GB(_m[tile].m4, 0, 4)) : !HASBIT(tpf->railtypes, GetRailType(tile))) {
 					bits = 0;
 					break;
 				}