diff options
author | bunnei <bunneidev@gmail.com> | 2020-12-12 00:50:22 -0800 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2020-12-28 16:33:48 -0800 |
commit | 916438a9de378f97129df7f5a979bb1a406cda9f (patch) | |
tree | 0ed01b4d414cc649595db93111a973263a8922b3 /src/yuzu/configuration/config.cpp | |
parent | 40571c073faa02a6a4301e7f0ce365ef50a400aa (diff) |
core: settings: Untangle multicore from asynchronous GPU.
- Now that GPU is always threaded, we can support multicore with synchronous GPU.
Diffstat (limited to 'src/yuzu/configuration/config.cpp')
-rw-r--r-- | src/yuzu/configuration/config.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index 9fb254986..34c2a5f8b 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp @@ -1589,14 +1589,12 @@ void Config::WriteSettingGlobal(const QString& name, const QVariant& value, bool void Config::Reload() { ReadValues(); - Settings::Sanitize(); // To apply default value changes SaveValues(); Settings::Apply(Core::System::GetInstance()); } void Config::Save() { - Settings::Sanitize(); SaveValues(); } |