diff --git a/src/jeu.cpp b/src/jeu.cpp index 9b15469..2a11c87 100644 --- a/src/jeu.cpp +++ b/src/jeu.cpp @@ -88,7 +88,7 @@ void Jeu::tick() { if (posTest == applePos) { increaseScore(1); - std::cout << "Snake eats the apple!" << std::endl; + //std::cout << "Snake eats the apple!" << std::endl; // The snake eats the apple, place a new apple std::uniform_int_distribution<> distr(0, map.getWidth() - 1); int attempts = 0;