summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorOatmealDome <OatmealDome@users.noreply.github.com>2024-07-28 16:16:05 -0400
committerGitHub <noreply@github.com>2024-07-28 16:16:05 -0400
commitde503092092045f794e24934bee49591ecc01e5f (patch)
treea91a27577fad9f424b250be0681ff4b5e972d00e /Source
parent284960651827a15888a78b47db3978079307c793 (diff)
parent9a730bacce411e9a4ad68e58d8275d1a16ef595f (diff)
Merge pull request #12962 from MayImilae/tellitlikeitis
Dual Core Labeling Update
Diffstat (limited to 'Source')
-rw-r--r--Source/Android/app/src/main/res/values/strings.xml2
-rw-r--r--Source/Core/DolphinQt/Settings/GeneralPane.cpp2
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 Preference Fragment -->
<string name="general_submenu">General</string>
- <string name="dual_core">Dual Core</string>
+ <string name="dual_core">Dual Core (speedhack)</string>
<string name="dual_core_description">Split workload to two CPU cores instead of one. Increases speed.</string>
<string name="enable_cheats">Enable Cheats</string>
<string name="speed_limit">Speed Limit (0% = Unlimited)</string>
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"));