summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--bench/dijkstra.cpp2
-rw-r--r--editor/tests/path-test.cpp2
-rw-r--r--main/ctor.cpp2
-rw-r--r--main/main-impl.cpp2
-rw-r--r--src/dijkstra.cpp2
-rw-r--r--src/search-astar.hpp (renamed from src/astar.hpp)0
-rw-r--r--src/search.cpp2
-rw-r--r--test/dijkstra.cpp2
8 files changed, 7 insertions, 7 deletions
diff --git a/bench/dijkstra.cpp b/bench/dijkstra.cpp
index c525fdbb..925b5c31 100644
--- a/bench/dijkstra.cpp
+++ b/bench/dijkstra.cpp
@@ -1,4 +1,4 @@
-#include "src/astar.hpp"
+#include "src/search-astar.hpp"
#include "src/search-result.hpp"
#include "src/world.hpp"
#include "loader/loader.hpp"
diff --git a/editor/tests/path-test.cpp b/editor/tests/path-test.cpp
index 93da7a33..8589829b 100644
--- a/editor/tests/path-test.cpp
+++ b/editor/tests/path-test.cpp
@@ -3,7 +3,7 @@
#include "compat/shared-ptr-wrapper.hpp"
#include "compat/vector-wrapper.hpp"
#include "floormat/main.hpp"
-#include "src/astar.hpp"
+#include "src/search-astar.hpp"
#include "src/critter.hpp"
#include "shaders/shader.hpp"
#include "../imgui-raii.hpp"
diff --git a/main/ctor.cpp b/main/ctor.cpp
index e40eb5a3..09976016 100644
--- a/main/ctor.cpp
+++ b/main/ctor.cpp
@@ -1,6 +1,6 @@
#include "main-impl.hpp"
#include "compat/fpu.hpp"
-#include "src/astar.hpp"
+#include "src/search-astar.hpp"
#include <Corrade/Containers/GrowableArray.h>
namespace floormat {
diff --git a/main/main-impl.cpp b/main/main-impl.cpp
index 689c249b..74ee87ce 100644
--- a/main/main-impl.cpp
+++ b/main/main-impl.cpp
@@ -1,5 +1,5 @@
#include "main-impl.hpp"
-#include "src/astar.hpp"
+#include "src/search-astar.hpp"
#include <Corrade/Utility/Move.h>
#include <Magnum/Platform/Sdl2Application.h>
diff --git a/src/dijkstra.cpp b/src/dijkstra.cpp
index 1f353e30..15232f90 100644
--- a/src/dijkstra.cpp
+++ b/src/dijkstra.cpp
@@ -1,4 +1,4 @@
-#include "astar.hpp"
+#include "search-astar.hpp"
#include "search-bbox.hpp"
#include "compat/format.hpp"
#include "compat/vector-wrapper.hpp"
diff --git a/src/astar.hpp b/src/search-astar.hpp
index 7c48c5db..7c48c5db 100644
--- a/src/astar.hpp
+++ b/src/search-astar.hpp
diff --git a/src/search.cpp b/src/search.cpp
index 9f497134..f879260b 100644
--- a/src/search.cpp
+++ b/src/search.cpp
@@ -1,6 +1,6 @@
#include "search.hpp"
#include "search-bbox.hpp"
-#include "astar.hpp"
+#include "search-astar.hpp"
#include "global-coords.hpp"
#include "world.hpp"
#include "pass-mode.hpp"
diff --git a/test/dijkstra.cpp b/test/dijkstra.cpp
index 14015ade..fe73a468 100644
--- a/test/dijkstra.cpp
+++ b/test/dijkstra.cpp
@@ -1,5 +1,5 @@
#include "app.hpp"
-#include "src/astar.hpp"
+#include "src/search-astar.hpp"
#include "src/world.hpp"
#include "loader/loader.hpp"
#include "loader/wall-cell.hpp"