Revert vers une phase qui fonctionne théoriquement

This commit is contained in:
Lea
2025-11-28 08:39:24 -05:00
parent ac31baba3d
commit f60ebf6b42
2 changed files with 4 additions and 2 deletions

View File

@@ -111,7 +111,8 @@ void afficherImageTableau(std::string grid[][LARGTIC], std::string style) {
// Lignes de code pour faire afficher le Tic Tac Toe une fois que les symboles ont <20>t<EFBFBD> ajout<75>s // Lignes de code pour faire afficher le Tic Tac Toe une fois que les symboles ont <20>t<EFBFBD> ajout<75>s
cout << "Joueur 1: " << emoteJ1 << " Joueur 2: " << emoteJ2 << endl << endl; cout << "Joueur 1: " << emoteJ1 << " Joueur 2: " << emoteJ2 << endl << endl;
// Lignes de code pour faire afficher le Tic Tac Toe une fois que les symboles ont <20>t<EFBFBD> ajout<75>s
cout << " "; cout << " ";
for (int i = 0; i < LARGTIC; i++) { for (int i = 0; i < LARGTIC; i++) {
cout << " " << i + 1 << " "; cout << " " << i + 1 << " ";
@@ -140,7 +141,7 @@ void afficherImageTableau(std::string grid[][LARGTIC], std::string style) {
cout << "|" << " " ; cout << "|" << " " ;
if (grid[k][i] == "X") { if (grid[k][i] == "X") {
cout << emoteJ1; cout << emoteJ1;
} }
else if (grid[k][i] == "O") { else if (grid[k][i] == "O") {
cout << emoteJ2; cout << emoteJ2;
} }

View File

@@ -46,6 +46,7 @@ int main() {
case 'C': case 'C':
changerLeTheme(theme); changerLeTheme(theme);
theme = true;
break; break;
case 'Q': case 'Q':