core: settings: Untangle multicore from asynchronous GPU.

- Now that GPU is always threaded, we can support multicore with synchronous GPU.
This commit is contained in:
bunnei 2020-12-12 00:50:22 -08:00
parent 40571c073f
commit 916438a9de
5 changed files with 4 additions and 21 deletions

View file

@ -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();
}