summaryrefslogtreecommitdiffhomepage
path: root/src/path-search.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/path-search.hpp')
-rw-r--r--src/path-search.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/path-search.hpp b/src/path-search.hpp
index 6d8da1da..f705c251 100644
--- a/src/path-search.hpp
+++ b/src/path-search.hpp
@@ -89,8 +89,8 @@ struct astar
static edge make_edge(const point& a, const point& b);
// todo add simple bresenham short-circuit
- path_search_result Dijkstra(world& w, Vector2ub own_size, object_id own_id,
- point from, point to, uint32_t max_dist,
+ path_search_result Dijkstra(world& w, point from, point to,
+ object_id own_id, uint32_t max_dist, Vector2ub own_size,
const pred& p = path_search::never_continue());
static constexpr auto div_factor = path_search::div_factor;