From 7bbcf5875c2fc6a8fa80e417d65e1094947d78b8 Mon Sep 17 00:00:00 2001 From: tron Date: Mon, 31 Jan 2005 07:23:15 +0000 Subject: (svn r1749) Move the functions which calculate distances to map.[ch] and give the more meaningful names --- aircraft_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aircraft_cmd.c') diff --git a/aircraft_cmd.c b/aircraft_cmd.c index 48fbfbbbd..3b9b97358 100644 --- a/aircraft_cmd.c +++ b/aircraft_cmd.c @@ -48,7 +48,7 @@ static uint32 FindNearestHangar(Vehicle *v) // don't crash the planes if we know they can't land at the airport if (HASBIT(v->subtype,1) && st->airport_type == AT_SMALL && !_cheats.no_jetcrash.value) continue; - temp_distance = GetTileDistAdv(v->tile, st->airport_tile); + temp_distance = DistanceSquare(v->tile, st->airport_tile); if (temp_distance < distance) { distance = temp_distance; index_to_target = st->index; -- cgit v1.2.3-54-g00ecf