From 39c2fc307f2c889af5ef4ede24d4128a06bf09c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Mogu=C3=A9rou?= Date: Fri, 20 Oct 2023 18:03:40 +0200 Subject: [PATCH] Initialisaton de hauteur dans struct colonne --- grille.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/grille.c b/grille.c index 808a7e1..3743d72 100644 --- a/grille.c +++ b/grille.c @@ -45,7 +45,8 @@ colonne *creer_colonne(int hauteur_max) init_zeros(col->jetons, hauteur_max); col->hauteur_max = hauteur_max; - + col->hauteur = 0; + return col; }