]> pd.if.org Git - hexagon/blobdiff - astar.c
renamed library to hexagon
[hexagon] / astar.c
diff --git a/astar.c b/astar.c
index cabe5d08c4c36dec8d0bf86490fe5e2424e4a2a2..5bfc60fc2077ae94b16d8ba24e68d7829efc899c 100644 (file)
--- a/astar.c
+++ b/astar.c
@@ -1,11 +1,11 @@
-#include "hexmap.h"
-
 #include <math.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <limits.h>
 #include <errno.h>
 
+#include "hexagon.h"
+
 /*
  * TODO use binary heap for the openlist and closed list.
  * open list should be a min-heap on the f value
@@ -229,7 +229,6 @@ int HL_findpath(struct HL_astar *s, int loops) {
                        yopen = in_open(s, y);
                        if (! yopen) {
                                yopen = add_open(s, y);
-
                                tent_better = 1;
                        } else if (cost < yopen->g) {
                                tent_better = 1;