summaryrefslogtreecommitdiff
path: root/src/pathfinder/npf/aystar.h
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-08-29 13:47:15 +0000
committeralberth <alberth@openttd.org>2010-08-29 13:47:15 +0000
commit219ad6e0032efd16afa177e6b6e09c7e7a7b4141 (patch)
tree4644cdec6234c7004b2a9eb8bf7a59542c34121b /src/pathfinder/npf/aystar.h
parented723385133413160d56694f17165a216123f958 (diff)
downloadopenttd-219ad6e0032efd16afa177e6b6e09c7e7a7b4141.tar.xz
(svn r20688) -Codechange: Rename Queue struct to BinaryHeap.
Diffstat (limited to 'src/pathfinder/npf/aystar.h')
-rw-r--r--src/pathfinder/npf/aystar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathfinder/npf/aystar.h b/src/pathfinder/npf/aystar.h
index 864cdd486..a71fef299 100644
--- a/src/pathfinder/npf/aystar.h
+++ b/src/pathfinder/npf/aystar.h
@@ -161,7 +161,7 @@ struct AyStar {
/* The actual closed list */
Hash ClosedListHash;
/* The open queue */
- Queue OpenListQueue;
+ BinaryHeap OpenListQueue;
/* An extra hash to speed up the process of looking up an element in
* the open list */
Hash OpenListHash;