mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-18 18:57:48 +00:00
Port #3911 from Citra: "Optimize settings application"
This commit is contained in:
parent
42aa40e14a
commit
6d2e4b74c2
5 changed files with 3 additions and 6 deletions
|
@ -44,5 +44,4 @@ void ConfigureDebug::applyConfiguration() {
|
|||
Log::Filter filter;
|
||||
filter.ParseFilterString(Settings::values.log_filter);
|
||||
Log::SetGlobalFilter(filter);
|
||||
Settings::Apply();
|
||||
}
|
||||
|
|
|
@ -44,5 +44,4 @@ void ConfigureGeneral::applyConfiguration() {
|
|||
Settings::values.use_cpu_jit = ui->use_cpu_jit->isChecked();
|
||||
Settings::values.use_multi_core = ui->use_multi_core->isChecked();
|
||||
Settings::values.use_docked_mode = ui->use_docked_mode->isChecked();
|
||||
Settings::Apply();
|
||||
}
|
||||
|
|
|
@ -67,5 +67,4 @@ void ConfigureGraphics::applyConfiguration() {
|
|||
ToResolutionFactor(static_cast<Resolution>(ui->resolution_factor_combobox->currentIndex()));
|
||||
Settings::values.toggle_framelimit = ui->toggle_framelimit->isChecked();
|
||||
Settings::values.use_accurate_framebuffers = ui->use_accurate_framebuffers->isChecked();
|
||||
Settings::Apply();
|
||||
}
|
||||
|
|
|
@ -191,8 +191,6 @@ void ConfigureInput::applyConfiguration() {
|
|||
[](const Common::ParamPackage& param) { return param.Serialize(); });
|
||||
std::transform(analogs_param.begin(), analogs_param.end(), Settings::values.analogs.begin(),
|
||||
[](const Common::ParamPackage& param) { return param.Serialize(); });
|
||||
|
||||
Settings::Apply();
|
||||
}
|
||||
|
||||
void ConfigureInput::loadConfiguration() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue