Initialisaton de hauteur dans struct colonne

This commit is contained in:
Valentin Moguérou 2023-10-20 18:03:40 +02:00
parent e2154cf791
commit 39c2fc307f

View File

@ -45,7 +45,8 @@ colonne *creer_colonne(int hauteur_max)
init_zeros(col->jetons, hauteur_max); init_zeros(col->jetons, hauteur_max);
col->hauteur_max = hauteur_max; col->hauteur_max = hauteur_max;
col->hauteur = 0;
return col; return col;
} }