diff options
| author | Dusan Durech <dusan@debian.debian> | 2009-04-12 23:00:24 +0200 |
|---|---|---|
| committer | Dusan Durech <dusan@debian.debian> | 2009-04-12 23:00:24 +0200 |
| commit | 0287f62578cb4aa643649a9d62dc753586b16b30 (patch) | |
| tree | 7f6e2721d71ab2824b7d163a5b878d390ddb7918 /src/modules/modAI.c | |
| parent | 5876841408bf307d78d254b5ca355c61044e9e72 (diff) | |
fix bad preFixs
Diffstat (limited to 'src/modules/modAI.c')
| -rw-r--r-- | src/modules/modAI.c | 4 |
1 files changed, 2 insertions, 2 deletions
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--; |