diff options
Diffstat (limited to 'map.c')
-rw-r--r-- | map.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -6,8 +6,7 @@ #include "structures.h" #include "prototypes.h" -int battle(SURFACES *surfaces, POSITIONS *positions, - struct team_t *t1, struct team_t *t2); +int battle(struct team_t *t1, struct team_t *t2); void Fmap (SURFACES*surfaces, POSITIONS* positions, struct team_t *t1, struct team_t *t2) @@ -44,7 +43,10 @@ void Fmap (SURFACES*surfaces, POSITIONS* positions, //une fois le jeu quitté ! Fdechargersurfaces_map(surfaces); #else - battle(surfaces, positions, t1, t2); + (void) surfaces; + (void) positions; + + battle(t1, t2); #endif } |