From 960eec10c3d42ae92837776ceceeb710aaa18c4e Mon Sep 17 00:00:00 2001 From: Mylloon Date: Fri, 18 Nov 2022 14:32:52 +0100 Subject: [PATCH] start at the middle whatever the size of the game --- src/plateau.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/plateau.c b/src/plateau.c index 4be7e1c..84b195d 100644 --- a/src/plateau.c +++ b/src/plateau.c @@ -7,17 +7,14 @@ void remplissage_debut(Jeu *jeu) { } } - // D4 - ajoute_jeton_joueur(jeu->j2, jeu->plateau[3][3]); + ajoute_jeton_joueur(jeu->j2, + jeu->plateau[LONGEUR / 2 - 1][LARGEUR / 2 - 1]); - // E4 - ajoute_jeton_joueur(jeu->j1, jeu->plateau[3][4]); + ajoute_jeton_joueur(jeu->j1, jeu->plateau[LONGEUR / 2 - 1][LARGEUR / 2]); - // E5 - ajoute_jeton_joueur(jeu->j2, jeu->plateau[4][4]); + ajoute_jeton_joueur(jeu->j2, jeu->plateau[LONGEUR / 2][LARGEUR / 2]); - // D5 - ajoute_jeton_joueur(jeu->j1, jeu->plateau[4][3]); + ajoute_jeton_joueur(jeu->j1, jeu->plateau[LONGEUR / 2][LARGEUR / 2 - 1]); } void _affiche_lettres(void) {