diff --git a/source/glest_game/menu/menu_state_custom_game.cpp b/source/glest_game/menu/menu_state_custom_game.cpp index e8299e71..da1345b2 100644 --- a/source/glest_game/menu/menu_state_custom_game.cpp +++ b/source/glest_game/menu/menu_state_custom_game.cpp @@ -686,10 +686,12 @@ MenuStateCustomGame::MenuStateCustomGame(Program *program, MainMenu *mainMenu, publishToMasterserverThread->start(); if(openNetworkSlots==true){ - loadGameSettings(DEFAULT_NETWORKGAME_FILENAME); + if(fileExists(DEFAULT_NETWORKGAME_FILENAME) == true) + loadGameSettings(DEFAULT_NETWORKGAME_FILENAME); } else { - loadGameSettings(DEFAULT_GAME_FILENAME); + if(fileExists(DEFAULT_GAME_FILENAME) == true) + loadGameSettings(DEFAULT_GAME_FILENAME); } if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__);