summaryrefslogtreecommitdiffhomepage
path: root/main
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-02-25 05:01:14 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-02-25 05:01:14 +0100
commit7c1791841c13db2f3b92a3b5a790daf2a816cc35 (patch)
treea63149688a5d4133c9ce10244e85d81ed96a6ffe /main
parent50e42d74c9b25e2ec4c6b9fd3434f431c0b5c3d9 (diff)
rename astar -> search-astar
Diffstat (limited to 'main')
-rw-r--r--main/ctor.cpp2
-rw-r--r--main/main-impl.cpp2
2 files changed, 2 insertions, 2 deletions
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>