File diff r21382:9d5f35b3c6bb → r21383:942c32fb8b0e
src/game/game_config.cpp
Show inline comments
 
@@ -6,24 +6,26 @@
 
 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
 
 */
 

	
 
/** @file game_config.cpp Implementation of GameConfig. */
 

	
 
#include "../stdafx.h"
 
#include "../settings_type.h"
 
#include "game.hpp"
 
#include "game_config.hpp"
 
#include "game_info.hpp"
 

	
 
#include "../safeguards.h"
 

	
 
/* static */ GameConfig *GameConfig::GetConfig(ScriptSettingSource source)
 
{
 
	GameConfig **config;
 
	if (source == SSS_FORCE_NEWGAME || (source == SSS_DEFAULT && _game_mode == GM_MENU)) {
 
		config = &_settings_newgame.game_config;
 
	} else {
 
		config = &_settings_game.game_config;
 
	}
 
	if (*config == NULL) *config = new GameConfig();
 
	return *config;
 
}