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 --- road_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'road_cmd.c') diff --git a/road_cmd.c b/road_cmd.c index 7dd27b902..cb5133b51 100644 --- a/road_cmd.c +++ b/road_cmd.c @@ -973,7 +973,7 @@ static void TileLoop_Road(uint tile) // Show an animation to indicate road work if (t->road_build_months != 0 && - !(GetTileDist(t->xy, tile) >= 8 && grp==0) && + !(DistanceManhattan(t->xy, tile) >= 8 && grp == 0) && (_map5[tile]==5 || _map5[tile]==10)) { if (GetTileSlope(tile, NULL) == 0 && EnsureNoVehicle(tile) && CHANCE16(1,20)) { _map2[tile] = ((_map2[tile]&7) <= 1) ? 6 : 7; -- cgit v1.2.3-54-g00ecf