summaryrefslogtreecommitdiff
path: root/aystar.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-04-02 10:38:31 +0000
committertruelight <truelight@openttd.org>2005-04-02 10:38:31 +0000
commit5a527daac951515c53a94ea4fb26d5b737dc264d (patch)
tree2bb637e0ebf36abd8b06639bf93ba4a0c7ad16e3 /aystar.c
parent1d0e0b22e439d95aebf370197e52a02c273db47f (diff)
downloadopenttd-5a527daac951515c53a94ea4fb26d5b737dc264d.tar.xz
(svn r2121) -Fix: changed the 2nd param of AyStar_EndNodeCheck back to what it should be
Diffstat (limited to 'aystar.c')
-rw-r--r--aystar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/aystar.c b/aystar.c
index 4ed9058b8..22d4ba813 100644
--- a/aystar.c
+++ b/aystar.c
@@ -146,7 +146,7 @@ int AyStarMain_Loop(AyStar *aystar) {
if (current == NULL) return AYSTAR_EMPTY_OPENLIST;
// Check for end node and if found, return that code
- if (aystar->EndNodeCheck(aystar, &current->path.node) == AYSTAR_FOUND_END_NODE) {
+ if (aystar->EndNodeCheck(aystar, current) == AYSTAR_FOUND_END_NODE) {
if (aystar->FoundEndNode != NULL)
aystar->FoundEndNode(aystar, current);
free(current);