Browse Source
Merge pull request #4335 from lat9nq/fix-set-per-game-multicore
configure_general: Explicitly guard use_multi_core when applying setting
pull/15/merge
LC
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
src/yuzu/configuration/configure_general.cpp
|
|
@ -65,6 +65,8 @@ void ConfigureGeneral::ApplyConfiguration() { |
|
|
Settings::values.use_frame_limit.SetValue(ui->toggle_frame_limit->checkState() == |
|
|
Settings::values.use_frame_limit.SetValue(ui->toggle_frame_limit->checkState() == |
|
|
Qt::Checked); |
|
|
Qt::Checked); |
|
|
Settings::values.frame_limit.SetValue(ui->frame_limit->value()); |
|
|
Settings::values.frame_limit.SetValue(ui->frame_limit->value()); |
|
|
|
|
|
} |
|
|
|
|
|
if (Settings::values.use_multi_core.UsingGlobal()) { |
|
|
Settings::values.use_multi_core.SetValue(ui->use_multi_core->isChecked()); |
|
|
Settings::values.use_multi_core.SetValue(ui->use_multi_core->isChecked()); |
|
|
} |
|
|
} |
|
|
} else { |
|
|
} else { |
|
|
|