From 04e7b7da9433aa92e13b9528797a36745829e353 Mon Sep 17 00:00:00 2001 From: Thomas Date: Mon, 10 Jan 2022 14:52:09 +0100 Subject: [PATCH] a --- src/game/gameBasics.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/game/gameBasics.cpp b/src/game/gameBasics.cpp index ad9666d..c01199d 100644 --- a/src/game/gameBasics.cpp +++ b/src/game/gameBasics.cpp @@ -69,10 +69,11 @@ void Game::managedGames() { if(playMode==PlayMode::NONE){ playMode = pm->showInitialMenu(); }else{ + DEBUG_MSG("Starting game") initGame(); enterGameLoop(); // will read the playMode + DEBUG_MSG("END End of game") handleScoreSaving(); - cout << "END OF GAME" << endl; if(!pm->showDeathMenu())playMode = PlayMode::NONE; } }