summaryrefslogtreecommitdiff
path: root/src/pathfinder/npf/aystar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pathfinder/npf/aystar.cpp')
-rw-r--r--src/pathfinder/npf/aystar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pathfinder/npf/aystar.cpp b/src/pathfinder/npf/aystar.cpp
index 4ef8cbfbe..9eda4a3a7 100644
--- a/src/pathfinder/npf/aystar.cpp
+++ b/src/pathfinder/npf/aystar.cpp
@@ -216,8 +216,8 @@ void AyStar::Clear()
* the hash. */
this->OpenListQueue.Clear(false);
/* Clean the hashes */
- clear_Hash(&this->OpenListHash, true);
- clear_Hash(&this->ClosedListHash, true);
+ this->OpenListHash.Clear(true);
+ this->ClosedListHash.Clear(true);
#ifdef AYSTAR_DEBUG
printf("[AyStar] Cleared AyStar\n");