Skip to content

Commit a987bd8

Browse files
committed
Revert "Added 200% option for EE overclocking"
This reverts commit 03d1601.
1 parent f4c67ad commit a987bd8

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

pcsx2-qt/Settings/EmulationSettingsWidget.ui

-5
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,6 @@
100100
<string>180% (Overclock)</string>
101101
</property>
102102
</item>
103-
<item>
104-
<property name="text">
105-
<string>200% (Overclock)</string>
106-
</property>
107-
</item>
108103
<item>
109104
<property name="text">
110105
<string>300% (Overclock)</string>

pcsx2/ImGui/FullscreenUI.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -3349,7 +3349,6 @@ void FullscreenUI::DrawEmulationSettingsPage()
33493349
FSUI_NSTR("100% Speed (Default)"),
33503350
FSUI_NSTR("130% Speed"),
33513351
FSUI_NSTR("180% Speed"),
3352-
FSUI_NSTR("200% Speed"),
33533352
FSUI_NSTR("300% Speed"),
33543353
};
33553354
static constexpr const char* ee_cycle_skip_settings[] = {
@@ -7458,7 +7457,6 @@ TRANSLATE_NOOP("FullscreenUI", "75% Speed");
74587457
TRANSLATE_NOOP("FullscreenUI", "100% Speed (Default)");
74597458
TRANSLATE_NOOP("FullscreenUI", "130% Speed");
74607459
TRANSLATE_NOOP("FullscreenUI", "180% Speed");
7461-
TRANSLATE_NOOP("FullscreenUI", "200% Speed");
74627460
TRANSLATE_NOOP("FullscreenUI", "300% Speed");
74637461
TRANSLATE_NOOP("FullscreenUI", "Normal (Default)");
74647462
TRANSLATE_NOOP("FullscreenUI", "Mild Underclock");

pcsx2/VU0microInterp.cpp

+1-4
Original file line numberDiff line numberDiff line change
@@ -293,10 +293,7 @@ void InterpVU0::Execute(u32 cycles)
293293
case 2: // 180%
294294
cycle_change /= 1.8f;
295295
break;
296-
case 3: // 200%
297-
cycle_change /= 2.0f;
298-
break;
299-
case 4: // 300%
296+
case 3: // 300%
300297
cycle_change /= 3.0f;
301298
break;
302299
default:

0 commit comments

Comments
 (0)