- do not print out crc log info if disabled

This commit is contained in:
Mark Vejvoda 2013-10-17 03:30:18 +00:00
parent a830fa168a
commit 23963e537d
1 changed files with 1 additions and 1 deletions

View File

@ -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 &&