diff options
author | frosch <frosch@openttd.org> | 2008-12-19 22:26:43 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2008-12-19 22:26:43 +0000 |
commit | d64b89838e689bb3df1689ca81b6a17a0530e1cc (patch) | |
tree | b813bdcab3f27bb2340f88256ce1fef0c70876f8 | |
parent | a59ddd79a1bc059c33e8ce2205fe87642c8c1c16 (diff) | |
download | openttd-d64b89838e689bb3df1689ca81b6a17a0530e1cc.tar.xz |
(svn r14695) -Cleanup: When NTP is not active there is no need to set up TrainTrackFollowerData.
-rw-r--r-- | src/train_cmd.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp index c70a9b096..3e81cd842 100644 --- a/src/train_cmd.cpp +++ b/src/train_cmd.cpp @@ -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; |