summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-10-07 03:06:37 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-10-07 03:06:37 +0200
commit06488337637fe6c506ca30fe445c6fa3c4f2494c (patch)
treefd4cda32b4c67746108da41f6d79c5f082122b50 /src
parent743f7b3c9589641f2f6ba35f7dcc1c6913b95c03 (diff)
fix linux
Diffstat (limited to 'src')
-rw-r--r--src/path-search-dijkstra.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path-search-dijkstra.cpp b/src/path-search-dijkstra.cpp
index 87b72a49..44da9ebe 100644
--- a/src/path-search-dijkstra.cpp
+++ b/src/path-search-dijkstra.cpp
@@ -41,7 +41,7 @@ path_search_result path_search::Dijkstra(world& w, Vector2ub own_size, object_id
struct tuple
{
- bbox<float> bbox;
+ bbox<float> bb;
uint32_t dist;
};