diff options
Diffstat (limited to 'src/modules/modTeleport.c')
| -rw-r--r-- | src/modules/modTeleport.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/modules/modTeleport.c b/src/modules/modTeleport.c index 301a368..c8cfda4 100644 --- a/src/modules/modTeleport.c +++ b/src/modules/modTeleport.c @@ -251,8 +251,8 @@ int init(export_fce_t * p) static void action_drawteleport(space_t * space, teleport_t * teleport, void *p) { - UNUSET(space); - UNUSET(p); + UNUSED(space); + UNUSED(p); drawTeleport(teleport); } @@ -275,7 +275,7 @@ static void action_eventteleportshot(space_t * space, teleport_t * teleport, sho arena_t *arena; tux_t *author; - UNUSET(space); + UNUSED(space); arena = export_fce->fce_arena_get_current(); @@ -291,7 +291,7 @@ static void action_eventteleportshot(space_t * space, teleport_t * teleport, sho static void action_eventshot(space_t * space, shot_t * shot, space_t * p_spaceTeleport) { - UNUSET(space); + UNUSED(space); space_action_from_location(p_spaceTeleport, action_eventteleportshot, shot, shot->x, shot->y, shot->w, shot->h); @@ -299,7 +299,7 @@ static void action_eventshot(space_t * space, shot_t * shot, space_t * p_spaceTe static void action_eventteleporttux(space_t * space, teleport_t * teleport, tux_t * tux) { - UNUSET(space); + UNUSED(space); teleportTux(tux, teleport); } @@ -308,7 +308,7 @@ static void action_eventtux(space_t * space, tux_t * tux, space_t * p_spaceTelep { int x, y, w, h; - UNUSET(space); + UNUSED(space); export_fce->fce_tux_get_proportion(tux, &x, &y, &w, &h); @@ -336,10 +336,10 @@ int event() int isConflict(int x, int y, int w, int h) { - UNUSET(x); - UNUSET(y); - UNUSET(w); - UNUSET(h); + UNUSED(x); + UNUSED(y); + UNUSED(w); + UNUSED(h); if (spaceTeleport == NULL) { return 0; @@ -356,7 +356,7 @@ void cmdArena(char *line) void recvMsg(char *msg) { - UNUSET(msg); + UNUSED(msg); } int destroy() |