diff options
Diffstat (limited to 'src/pathfinder')
-rw-r--r-- | src/pathfinder/npf/aystar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathfinder/npf/aystar.cpp b/src/pathfinder/npf/aystar.cpp index 55a0262f1..ffe62f7fa 100644 --- a/src/pathfinder/npf/aystar.cpp +++ b/src/pathfinder/npf/aystar.cpp @@ -293,7 +293,7 @@ void init_AyStar(AyStar *aystar, Hash_HashProc hash, uint num_buckets) /* Set up our sorting queue * BinaryHeap allocates a block of 1024 nodes - * When thatone gets full it reserves an otherone, till this number + * When that one gets full it reserves another one, till this number * That is why it can stay this high */ init_BinaryHeap(&aystar->OpenListQueue, 102400); |