From 23963e537d192cc22216e915e5d1c992dc7a3ff2 Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Thu, 17 Oct 2013 03:30:18 +0000 Subject: [PATCH] - do not print out crc log info if disabled --- source/glest_game/game/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/glest_game/game/game.cpp b/source/glest_game/game/game.cpp index b3dcfde1..d1ae7c3b 100644 --- a/source/glest_game/game/game.cpp +++ b/source/glest_game/game/game.cpp @@ -4909,7 +4909,7 @@ Stats Game::quitGame() { void Game::DumpCRCWorldLogIfRequired(string fileSuffix) { bool isNetworkGame = this->gameSettings.isNetworkGame(); if(isNetworkGame == true) { - printf("Check save world CRC to log. isNetworkGame = %d fileSuffix = %s\n",isNetworkGame,fileSuffix.c_str()); + if(SystemFlags::VERBOSE_MODE_ENABLED) printf("Check save world CRC to log. isNetworkGame = %d fileSuffix = %s\n",isNetworkGame,fileSuffix.c_str()); GameSettings *settings = world.getGameSettingsPtr(); if(settings != NULL &&