From fc3baf853b4429cf012f6d77b43d74872dc5ca11 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Thu, 8 Jan 2015 18:54:17 +0100 Subject: deactivate the display of the map since the map is not used now, no need to display it Signed-off-by: Olivier Gayot --- map.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/map.c b/map.c index 8b0ad00..3485d64 100644 --- a/map.c +++ b/map.c @@ -6,8 +6,9 @@ #include "structures.h" #include "prototypes.h" -void Fmap (SURFACES*surfaces, POSITIONS* positions, struct team_t *ally, struct team_t *enemy) +void Fmap (SURFACES*surfaces, POSITIONS* positions, struct team_t *t1, struct team_t *t2) { +#if 0 int map[15][11]; int continuer=1; SDL_Event event; @@ -38,6 +39,9 @@ void Fmap (SURFACES*surfaces, POSITIONS* positions, struct team_t *ally, struct } //une fois le jeu quitté ! Fdechargersurfaces_map(surfaces); +#else + Fjouer(surfaces, positions, t1, t2); +#endif } void Fgetmap (int map[][11]) -- cgit v1.2.3