diff --git a/TicTacToe/main.cpp b/TicTacToe/main.cpp index 360540e..3dc813b 100644 --- a/TicTacToe/main.cpp +++ b/TicTacToe/main.cpp @@ -25,15 +25,23 @@ int main() { switch (choix) { case 'A': - + if (theme == true) { system("cls"); jeuUnJoueur(grid); + } + else { + cout << "\n\nVeuillez choisir un theme d'abord."; + } break; case 'B': - + if (theme == true) { system("cls"); jeuDeuxJoueurs(grid); + } + else { + cout << "\n\nVeuillez choisir un theme d'abord."; + } break; case 'C':