configuration: Move speed_limit to core
This commit is contained in:
parent
3a7705e774
commit
81a96bafe2
|
@ -250,12 +250,6 @@ void ConfigureGraphics::Setup() {
|
||||||
setting, translations, combobox_translations, this, runtime_lock, apply_funcs,
|
setting, translations, combobox_translations, this, runtime_lock, apply_funcs,
|
||||||
ConfigurationShared::RequestType::ReverseSlider, true, 0.5f, nullptr,
|
ConfigurationShared::RequestType::ReverseSlider, true, 0.5f, nullptr,
|
||||||
tr("%1%", "FSR sharpening percentage (e.g. 50%)"));
|
tr("%1%", "FSR sharpening percentage (e.g. 50%)"));
|
||||||
} else if (setting->Id() == Settings::values.speed_limit.Id()) {
|
|
||||||
// speed_limit needs a checkbox to set use_speed_limit, as well as a spinbox
|
|
||||||
return new ConfigurationShared::Widget(
|
|
||||||
setting, translations, combobox_translations, this, runtime_lock, apply_funcs,
|
|
||||||
&Settings::values.use_speed_limit, ConfigurationShared::RequestType::SpinBox,
|
|
||||||
tr("%", "Limit speed percentage (e.g. 50%)"));
|
|
||||||
} else {
|
} else {
|
||||||
return new ConfigurationShared::Widget(setting, translations, combobox_translations,
|
return new ConfigurationShared::Widget(setting, translations, combobox_translations,
|
||||||
this, runtime_lock, apply_funcs);
|
this, runtime_lock, apply_funcs);
|
||||||
|
|
|
@ -142,6 +142,12 @@ void ConfigureSystem::Setup() {
|
||||||
return new ConfigurationShared::Widget(
|
return new ConfigurationShared::Widget(
|
||||||
setting, translations, combobox_translations, this, runtime_lock, apply_funcs,
|
setting, translations, combobox_translations, this, runtime_lock, apply_funcs,
|
||||||
&Settings::values.rng_seed_enabled, ConfigurationShared::RequestType::HexEdit);
|
&Settings::values.rng_seed_enabled, ConfigurationShared::RequestType::HexEdit);
|
||||||
|
} else if (setting->Id() == Settings::values.speed_limit.Id()) {
|
||||||
|
// speed_limit needs a checkbox to set use_speed_limit, as well as a spinbox
|
||||||
|
return new ConfigurationShared::Widget(
|
||||||
|
setting, translations, combobox_translations, this, runtime_lock, apply_funcs,
|
||||||
|
&Settings::values.use_speed_limit, ConfigurationShared::RequestType::SpinBox,
|
||||||
|
tr("%", "Limit speed percentage (e.g. 50%)"));
|
||||||
} else {
|
} else {
|
||||||
return new ConfigurationShared::Widget(setting, translations, combobox_translations,
|
return new ConfigurationShared::Widget(setting, translations, combobox_translations,
|
||||||
this, runtime_lock, apply_funcs);
|
this, runtime_lock, apply_funcs);
|
||||||
|
|
|
@ -36,6 +36,8 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QWidget* parent) {
|
||||||
INSERT(Settings, use_multi_core, "Multicore CPU Emulation", "");
|
INSERT(Settings, use_multi_core, "Multicore CPU Emulation", "");
|
||||||
INSERT(Settings, use_unsafe_extended_memory_layout, "Unsafe extended memory layout (8GB DRAM)",
|
INSERT(Settings, use_unsafe_extended_memory_layout, "Unsafe extended memory layout (8GB DRAM)",
|
||||||
"");
|
"");
|
||||||
|
INSERT(Settings, use_speed_limit, "", "");
|
||||||
|
INSERT(Settings, speed_limit, "Limit Speed Percent", "");
|
||||||
|
|
||||||
// Cpu
|
// Cpu
|
||||||
INSERT(Settings, cpu_accuracy, "Accuracy:", "");
|
INSERT(Settings, cpu_accuracy, "Accuracy:", "");
|
||||||
|
@ -120,10 +122,6 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QWidget* parent) {
|
||||||
|
|
||||||
// Renderer (Debug)
|
// Renderer (Debug)
|
||||||
|
|
||||||
// Renderer (General)
|
|
||||||
INSERT(Settings, use_speed_limit, "", "");
|
|
||||||
INSERT(Settings, speed_limit, "Limit Speed Percent", "");
|
|
||||||
|
|
||||||
// System
|
// System
|
||||||
INSERT(Settings, rng_seed, "RNG Seed", "");
|
INSERT(Settings, rng_seed, "RNG Seed", "");
|
||||||
INSERT(Settings, rng_seed_enabled, "", "");
|
INSERT(Settings, rng_seed_enabled, "", "");
|
||||||
|
|
Reference in New Issue