summaryrefslogtreecommitdiff
path: root/aystar.c
diff options
context:
space:
mode:
authormiham <miham@openttd.org>2004-12-29 13:13:29 +0000
committermiham <miham@openttd.org>2004-12-29 13:13:29 +0000
commit7bf7cf80eecef6b85baf256c57198262557851af (patch)
tree66526ea5c00e53199cc02447a0970c13b4e8175e /aystar.c
parenta25a482187ae682f80f7e2927e38a6f39fc4c263 (diff)
downloadopenttd-7bf7cf80eecef6b85baf256c57198262557851af.tar.xz
(svn r1297) Language fixes in the source.. (ln-)
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 292bcdbe1..bb09656a8 100644
--- a/aystar.c
+++ b/aystar.c
@@ -215,7 +215,7 @@ void AyStarMain_Clear(AyStar *aystar) {
int AyStarMain_Main(AyStar *aystar) {
int r, i = 0;
// Loop through the OpenList
- // Quit if result is no AYSTAR_STILL_BUSY or is more then loops_per_tick
+ // Quit if result is no AYSTAR_STILL_BUSY or is more than loops_per_tick
while ((r = aystar->loop(aystar)) == AYSTAR_STILL_BUSY && (aystar->loops_per_tick == 0 || ++i < aystar->loops_per_tick)) { }
#ifdef AYSTAR_DEBUG
if (r == AYSTAR_FOUND_END_NODE)