1
0
Fork 0

(svn r14023) -Fix (r13944) [YAPP]: If YAPF encountered a dead-end that had a signal on it, is could be falsely seen as a valid destination. (michi_cc)

release/0.7
smatz 2008-08-08 14:58:27 +00:00
parent b595d59497
commit 872cefeb27
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ no_entry_cost: // jump here at the beginning if the node has no parent (it is th
} }
if (TrackFollower::MaskReservedTracks() && tf_local.m_err != TrackFollower::EC_90DEG) { if (TrackFollower::MaskReservedTracks() && tf_local.m_err != TrackFollower::EC_90DEG) {
end_segment_reason |= ESRB_SAFE_TILE; if (!HasOnewaySignalBlockingTrackdir(cur.tile, cur.td)) end_segment_reason |= ESRB_SAFE_TILE;
} }
break; break;
} }