diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-11-11 02:38:10 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-11-11 02:38:10 +0100 |
commit | d258f0a4dbc3ad3f0b47a50e8618099d041bd164 (patch) | |
tree | d7eaf380b10b9f5ccd1961c9477b1e45e8ba01dd | |
parent | 33a19e387c187577936999d604b09e616a9c8998 (diff) |
cc
-rw-r--r-- | src/dijkstra.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dijkstra.cpp b/src/dijkstra.cpp index 7a2a40a0..d5ad2842 100644 --- a/src/dijkstra.cpp +++ b/src/dijkstra.cpp @@ -154,8 +154,9 @@ uint32_t astar::pop_from_heap() return id; } -path_search_result astar::Dijkstra(world& w, const point from, const point to, object_id own_id, uint32_t max_dist, - Vector2ub own_size_, int debug, const pred& p) +path_search_result astar::Dijkstra(world& w, const point from, const point to, + object_id own_id, uint32_t max_dist, Vector2ub own_size_, + int debug, const pred& p) { #ifdef FM_NO_DEBUG (void)debug; |