(svn r14695) -Cleanup: When NTP is not active there is no need to set up TrainTrackFollowerData.

This commit is contained in:
frosch 2008-12-19 22:26:43 +00:00
parent f52d1bd0ba
commit c20e6d3a13
1 changed files with 3 additions and 3 deletions

View File

@ -3136,9 +3136,6 @@ static bool CheckReverseTrain(Vehicle *v)
return false;
}
TrainTrackFollowerData fd;
FillWithStationData(&fd, v);
uint reverse_best = 0;
assert(v->u.rail.track);
@ -3175,6 +3172,9 @@ static bool CheckReverseTrain(Vehicle *v)
default:
case VPF_NTP: { /* NTP */
TrainTrackFollowerData fd;
FillWithStationData(&fd, v);
int i = _search_directions[FindFirstTrack(v->u.rail.track)][DirToDiagDir(v->direction)];
int best_track = -1;