start at the middle whatever the size of the game
This commit is contained in:
parent
7e075e654b
commit
960eec10c3
1 changed files with 5 additions and 8 deletions
|
@ -7,17 +7,14 @@ void remplissage_debut(Jeu *jeu) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// D4
|
ajoute_jeton_joueur(jeu->j2,
|
||||||
ajoute_jeton_joueur(jeu->j2, jeu->plateau[3][3]);
|
jeu->plateau[LONGEUR / 2 - 1][LARGEUR / 2 - 1]);
|
||||||
|
|
||||||
// E4
|
ajoute_jeton_joueur(jeu->j1, jeu->plateau[LONGEUR / 2 - 1][LARGEUR / 2]);
|
||||||
ajoute_jeton_joueur(jeu->j1, jeu->plateau[3][4]);
|
|
||||||
|
|
||||||
// E5
|
ajoute_jeton_joueur(jeu->j2, jeu->plateau[LONGEUR / 2][LARGEUR / 2]);
|
||||||
ajoute_jeton_joueur(jeu->j2, jeu->plateau[4][4]);
|
|
||||||
|
|
||||||
// D5
|
ajoute_jeton_joueur(jeu->j1, jeu->plateau[LONGEUR / 2][LARGEUR / 2 - 1]);
|
||||||
ajoute_jeton_joueur(jeu->j1, jeu->plateau[4][3]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void _affiche_lettres(void) {
|
void _affiche_lettres(void) {
|
||||||
|
|
Reference in a new issue