From 0287f62578cb4aa643649a9d62dc753586b16b30 Mon Sep 17 00:00:00 2001 From: Dusan Durech Date: Sun, 12 Apr 2009 23:00:24 +0200 Subject: fix bad preFixs --- src/modules/modAI.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/modAI.c') diff --git a/src/modules/modAI.c b/src/modules/modAI.c index e8b5172..f084933 100644 --- a/src/modules/modAI.c +++ b/src/modules/modAI.c @@ -263,7 +263,7 @@ static void tux_eventAI(tux_t * tux) moveAlternative(this, w * 2); - if (export_fce->fce_arena__is_free_space(arena, this->x, this->y, w, h) == 1) { + if (export_fce->fce_arena_is_free_space(arena, this->x, this->y, w, h) == 1) { forkAlternative(listFork, this, 2 * w, 2 * h); countFork++; continue; @@ -281,7 +281,7 @@ static void tux_eventAI(tux_t * tux) break; } - if (export_fce->fce_arena__is_free_space(arena, this->x, this->y, w, h) == 0) { + if (export_fce->fce_arena_is_free_space(arena, this->x, this->y, w, h) == 0) { //forkAlternative(listFork, this, w*2, h*2); list_del_item(listAlternative, my_index, destroyAlternative); my_index--; -- cgit v1.2.3