diff options
| author | 2020-07-14 07:53:04 -0400 | |
|---|---|---|
| committer | 2020-07-14 07:53:04 -0400 | |
| commit | 6989fd65f3b95fd129b5275afda5e85a9999a2df (patch) | |
| tree | 117b214638bd1c2238786f08876781a9b0756424 | |
| parent | Merge pull request #4280 from jbeich/system-libusb (diff) | |
| parent | configure_general: Explicitly guard use_multi_core when applying settings (diff) | |
| download | yuzu-6989fd65f3b95fd129b5275afda5e85a9999a2df.tar.gz yuzu-6989fd65f3b95fd129b5275afda5e85a9999a2df.tar.xz yuzu-6989fd65f3b95fd129b5275afda5e85a9999a2df.zip | |
Merge pull request #4335 from lat9nq/fix-set-per-game-multicore
configure_general: Explicitly guard use_multi_core when applying setting
| -rw-r--r-- | src/yuzu/configuration/configure_general.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_general.cpp b/src/yuzu/configuration/configure_general.cpp index 1fb62d1cf..20316c9cc 100644 --- a/src/yuzu/configuration/configure_general.cpp +++ b/src/yuzu/configuration/configure_general.cpp | |||
| @@ -65,6 +65,8 @@ void ConfigureGeneral::ApplyConfiguration() { | |||
| 65 | Settings::values.use_frame_limit.SetValue(ui->toggle_frame_limit->checkState() == | 65 | Settings::values.use_frame_limit.SetValue(ui->toggle_frame_limit->checkState() == |
| 66 | Qt::Checked); | 66 | Qt::Checked); |
| 67 | Settings::values.frame_limit.SetValue(ui->frame_limit->value()); | 67 | Settings::values.frame_limit.SetValue(ui->frame_limit->value()); |
| 68 | } | ||
| 69 | if (Settings::values.use_multi_core.UsingGlobal()) { | ||
| 68 | Settings::values.use_multi_core.SetValue(ui->use_multi_core->isChecked()); | 70 | Settings::values.use_multi_core.SetValue(ui->use_multi_core->isChecked()); |
| 69 | } | 71 | } |
| 70 | } else { | 72 | } else { |