Skip to content
Snippets Groups Projects
Commit 16301cf7 authored by ColinDrieu's avatar ColinDrieu
Browse files

retrait de l'affichage des arguments dans la console de la fonction init_case

parent 28bc7bb1
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -15,7 +15,6 @@ void init_case(Case * c,int x,int y, Terrain *t){ ...@@ -15,7 +15,6 @@ void init_case(Case * c,int x,int y, Terrain *t){
c->coord_y=y; c->coord_y=y;
c->terrain=t; c->terrain=t;
c->occupee=faux; c->occupee=faux;
printf("size of Case : %d\nadresse x : %d\nadresse y : %d\nadresse terrain : %d \nadresse occupee : %d\n",sizeof(*c),&c->coord_x, &c->coord_y,&c->terrain,&c->occupee);
} }
int get_x(Case *c){ int get_x(Case *c){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment