From 9a730bacce411e9a4ad68e58d8275d1a16ef595f Mon Sep 17 00:00:00 2001 From: MayImilae Date: Sun, 28 Jul 2024 03:30:08 -0700 Subject: [PATCH] Change Dual Core (speedup) to Dual Core (speedhack) --- Source/Android/app/src/main/res/values/strings.xml | 2 +- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Android/app/src/main/res/values/strings.xml b/Source/Android/app/src/main/res/values/strings.xml index 052a0a0028..a195ef08ea 100644 --- a/Source/Android/app/src/main/res/values/strings.xml +++ b/Source/Android/app/src/main/res/values/strings.xml @@ -69,7 +69,7 @@ General - Dual Core + Dual Core (speedhack) Split workload to two CPU cores instead of one. Increases speed. Enable Cheats Speed Limit (0% = Unlimited) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 00f7c5ea17..4804c72102 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -140,7 +140,7 @@ void GeneralPane::CreateBasic() basic_group->setLayout(basic_group_layout); m_main_layout->addWidget(basic_group); - m_checkbox_dualcore = new QCheckBox(tr("Enable Dual Core (speedup)")); + m_checkbox_dualcore = new QCheckBox(tr("Enable Dual Core (speedhack)")); basic_group_layout->addWidget(m_checkbox_dualcore); m_checkbox_cheats = new QCheckBox(tr("Enable Cheats"));