diff options
Diffstat (limited to 'src/base/arena.c')
| -rw-r--r-- | src/base/arena.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/base/arena.c b/src/base/arena.c index 4f9f51f..a692830 100644 --- a/src/base/arena.c +++ b/src/base/arena.c @@ -222,24 +222,24 @@ static void drawBackground(arena_t * arena, int screen_x, int screen_y) static void action_tux_draw(space_t * space, tux_t * tux, void *p) { - UNUSET(space); - UNUSET(p); + UNUSED(space); + UNUSED(p); tux_draw(tux); } static void action_item_draw(space_t * space, item_t * item, void *p) { - UNUSET(space); - UNUSET(p); + UNUSED(space); + UNUSED(p); item_draw(item); } static void action_shot_draw(space_t * space, shot_t * shot, void *p) { - UNUSET(space); - UNUSET(p); + UNUSED(space); + UNUSED(p); shot_draw(shot); } @@ -381,8 +381,8 @@ void arena_draw(arena_t * arena) static void action_tux(space_t * space, tux_t * tux, void *p) { - UNUSET(space); - UNUSET(p); + UNUSED(space); + UNUSED(p); tux_event(tux); } |