Browse Source
Merge pull request #1288 from MysticExile/remove-multicore
Remove the multi-core option from the UI
pull/15/merge
James Rowe
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
0 additions and
10 deletions
-
src/yuzu/configuration/configure_general.cpp
-
src/yuzu/configuration/configure_general.ui
|
|
|
@ -20,7 +20,6 @@ ConfigureGeneral::ConfigureGeneral(QWidget* parent) |
|
|
|
this->setConfiguration(); |
|
|
|
|
|
|
|
ui->use_cpu_jit->setEnabled(!Core::System::GetInstance().IsPoweredOn()); |
|
|
|
ui->use_multi_core->setEnabled(!Core::System::GetInstance().IsPoweredOn()); |
|
|
|
ui->use_docked_mode->setEnabled(!Core::System::GetInstance().IsPoweredOn()); |
|
|
|
} |
|
|
|
|
|
|
|
@ -31,7 +30,6 @@ void ConfigureGeneral::setConfiguration() { |
|
|
|
ui->toggle_check_exit->setChecked(UISettings::values.confirm_before_closing); |
|
|
|
ui->theme_combobox->setCurrentIndex(ui->theme_combobox->findData(UISettings::values.theme)); |
|
|
|
ui->use_cpu_jit->setChecked(Settings::values.use_cpu_jit); |
|
|
|
ui->use_multi_core->setChecked(Settings::values.use_multi_core); |
|
|
|
ui->use_docked_mode->setChecked(Settings::values.use_docked_mode); |
|
|
|
} |
|
|
|
|
|
|
|
@ -46,6 +44,5 @@ void ConfigureGeneral::applyConfiguration() { |
|
|
|
ui->theme_combobox->itemData(ui->theme_combobox->currentIndex()).toString(); |
|
|
|
|
|
|
|
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(); |
|
|
|
} |
|
|
|
@ -58,13 +58,6 @@ |
|
|
|
</property> |
|
|
|
</widget> |
|
|
|
</item> |
|
|
|
<item> |
|
|
|
<widget class="QCheckBox" name="use_multi_core"> |
|
|
|
<property name="text"> |
|
|
|
<string>Enable multi-core</string> |
|
|
|
</property> |
|
|
|
</widget> |
|
|
|
</item> |
|
|
|
</layout> |
|
|
|
</item> |
|
|
|
</layout> |
|
|
|
|