summaryrefslogtreecommitdiff
path: root/train_cmd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-31 07:23:15 +0000
committertron <tron@openttd.org>2005-01-31 07:23:15 +0000
commitbb680056b1004ca5e8e74786764061aeedf9c188 (patch)
treec97da17a330889a788b8654dddbc7507d01b3b38 /train_cmd.c
parent77072aedabd1e5acd2d380defac707c88d287c88 (diff)
downloadopenttd-bb680056b1004ca5e8e74786764061aeedf9c188.tar.xz
(svn r1749) Move the functions which calculate distances to map.[ch] and give the more meaningful names
Diffstat (limited to 'train_cmd.c')
-rw-r--r--train_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/train_cmd.c b/train_cmd.c
index 9c176c8df..2cbadb142 100644
--- a/train_cmd.c
+++ b/train_cmd.c
@@ -1598,7 +1598,7 @@ static bool TrainTrackFollower(uint tile, TrainTrackFollowerData *ttfd, int trac
return length >= ttfd->best_track_dist;
// didn't find station
- dist = GetTileDist(tile, ttfd->dest_coords);
+ dist = DistanceManhattan(tile, ttfd->dest_coords);
if (dist < ttfd->best_bird_dist) {
ttfd->best_bird_dist = dist;
ttfd->best_track = state[1];