aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--path.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/path.c b/path.c
index f604ec1..a571963 100644
--- a/path.c
+++ b/path.c
@@ -284,7 +284,6 @@ Path astar_path(int dirs, Map map, size_t **cell_costs, size_t width, size_t hei
}
-/* FIXME: I feel like there's a better way to do this, but not sure */
size_t manhattan_distance(Position a, Position b) {
size_t d = 0;
if (a.x > b.x) {