Revert "Config Hotfix: Prevent per-game settings (ie. GameINI) being stored to the global user configuration."

This commit is contained in:
Scott Mansell
2015-12-24 18:25:22 +13:00
parent cfd300586a
commit 0216879d3e
2 changed files with 1 additions and 15 deletions

View File

@ -271,13 +271,6 @@ void VideoConfig::VerifyValidity()
void VideoConfig::Save(const std::string& ini_file)
{
// TODO: This is a hotfix to prevent writing of temporary per-game settings
// (GameINI, Movie, Netplay, ...) to the global Dolphin configuration file.
// The Config logic should be rewritten instead so that per-game settings
// aren't stored in the same configuration as the actual user settings.
if (Core::IsRunning())
return;
IniFile iniFile;
iniFile.Load(ini_file);