summaryrefslogtreecommitdiff
path: root/map.h
diff options
context:
space:
mode:
authormatthijs <matthijs@openttd.org>2005-09-09 23:14:38 +0000
committermatthijs <matthijs@openttd.org>2005-09-09 23:14:38 +0000
commitcd54bf48d1b78ad51a5bf91d96e41d6b8cd8513b (patch)
tree2f3cffa2f8a0c0f0c06f6a3666f430e20d0c6957 /map.h
parenta744b15907b55c56569f9028ada63d5b04ef6229 (diff)
downloadopenttd-cd54bf48d1b78ad51a5bf91d96e41d6b8cd8513b.tar.xz
(svn r2929) * Move DistanceTrack from map.c to npf.c and rename to NPFDistanceTrack.
* Make NPFDistanceTrack return the distance multiplied by NPF_TILE_LENGTH to prevent rounding This should make ship and train pathfinding more accurate and faster. * Update IsEndOfLine to prevent trains from trying to go off a slope onto a tunnel entrance.
Diffstat (limited to 'map.h')
-rw-r--r--map.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/map.h b/map.h
index e57d2f2e3..5a1705710 100644
--- a/map.h
+++ b/map.h
@@ -144,7 +144,6 @@ uint DistanceManhattan(TileIndex, TileIndex); // also known as L1-Norm. Is the s
uint DistanceSquare(TileIndex, TileIndex); // euclidian- or L2-Norm squared
uint DistanceMax(TileIndex, TileIndex); // also known as L-Infinity-Norm
uint DistanceMaxPlusManhattan(TileIndex, TileIndex); // Max + Manhattan
-uint DistanceTrack(TileIndex, TileIndex); // Returns the shortest distance one could go over tracks
uint DistanceFromEdge(TileIndex); // shortest distance from any edge of the map