Skip to content

Commit f4c67ad

Browse files
authored
Merge pull request #1 from crashGG/EEoverclock200%
Added 200% option for EE overclocking
2 parents c891ab0 + 03d1601 commit f4c67ad

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

Diff for: pcsx2-qt/Settings/EmulationSettingsWidget.ui

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

Diff for: pcsx2/ImGui/FullscreenUI.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -3349,6 +3349,7 @@ void FullscreenUI::DrawEmulationSettingsPage()
33493349
FSUI_NSTR("100% Speed (Default)"),
33503350
FSUI_NSTR("130% Speed"),
33513351
FSUI_NSTR("180% Speed"),
3352+
FSUI_NSTR("200% Speed"),
33523353
FSUI_NSTR("300% Speed"),
33533354
};
33543355
static constexpr const char* ee_cycle_skip_settings[] = {
@@ -7457,6 +7458,7 @@ TRANSLATE_NOOP("FullscreenUI", "75% Speed");
74577458
TRANSLATE_NOOP("FullscreenUI", "100% Speed (Default)");
74587459
TRANSLATE_NOOP("FullscreenUI", "130% Speed");
74597460
TRANSLATE_NOOP("FullscreenUI", "180% Speed");
7461+
TRANSLATE_NOOP("FullscreenUI", "200% Speed");
74607462
TRANSLATE_NOOP("FullscreenUI", "300% Speed");
74617463
TRANSLATE_NOOP("FullscreenUI", "Normal (Default)");
74627464
TRANSLATE_NOOP("FullscreenUI", "Mild Underclock");

Diff for: pcsx2/VU0microInterp.cpp

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

0 commit comments

Comments
 (0)