From ebfc232e11717ee8625eb284c8e3dcea001bc3b9 Mon Sep 17 00:00:00 2001 From: Soumaya <soumaya.ikhrichi5@etu.univ-lorraine.fr> Date: Wed, 5 Jan 2022 17:02:47 +0100 Subject: [PATCH] modification dans graphic.h fait avec Rawan --- README.md | 5 +++++ graphics.h | 4 ++-- map.c | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 70b8110..047b287 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # Maze_Game +Fait par: AL-AMERI RAWAN + IKHRICHI SOUMAYA + +lien De Git: https://gitlab.univ-lorraine.fr/alameri1u/maze_game.git + La compilation du jeu se fait dans le treminal avec la commande : make L'execution: ./main diff --git a/graphics.h b/graphics.h index 3e39e63..b7908d5 100644 --- a/graphics.h +++ b/graphics.h @@ -3,8 +3,8 @@ #include "player.h" -#define SCREENH 600 -#define SCREENW 600 +#define SCREENH 700 +#define SCREENW 1370 #define BRICKH 32 #define BRICKW 32 diff --git a/map.c b/map.c index 6781502..cb004e5 100644 --- a/map.c +++ b/map.c @@ -92,9 +92,9 @@ char** modifier_caractere(char** tab,int n,int m,char ancien,char nouveau){ } return tab; } + void ecrire_map(const char* nomFichier, char** tab,int n){ FILE* fichier=NULL; - fichier =fopen(nomFichier,"w"); if(fichier!= NULL){ for (int i = 0; i < n; i++){ -- GitLab