Skip to content

Commit f72ec45

Browse files
committed
Re-enable Dual Core by default
1 parent e2eb4f4 commit f72ec45

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Source/Core/Core/Config/MainSettings.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ const Info<bool> MAIN_CORRECT_TIME_DRIFT{{System::Main, "Core", "CorrectTimeDrif
5151
// Currently enabled by default on Android because the performance boost is really needed.
5252
constexpr bool DEFAULT_CPU_THREAD = true;
5353
#else
54-
constexpr bool DEFAULT_CPU_THREAD = false;
54+
// P+ change: enable dual core for desktop, as we're targeting low end machines for default settings
55+
constexpr bool DEFAULT_CPU_THREAD = true;
5556
#endif
5657
const Info<bool> MAIN_CPU_THREAD{{System::Main, "Core", "CPUThread"}, DEFAULT_CPU_THREAD};
5758
const Info<bool> MAIN_SYNC_ON_SKIP_IDLE{{System::Main, "Core", "SyncOnSkipIdle"}, true};

Source/Core/DolphinQt/Settings/GeneralPane.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ void GeneralPane::AddDescriptions()
371371
"burden by spreading Dolphin's heaviest load across two cores, which usually "
372372
"improves performance. However, it can result in glitches and crashes."
373373
"<br><br>This setting cannot be changed while emulation is active."
374-
"<br><br><dolphin_emphasis>If unsure, leave this unchecked.</dolphin_emphasis>");
374+
"<br><br><dolphin_emphasis>If unsure, leave this checked.</dolphin_emphasis>");
375375
static constexpr char TR_CHEATS_DESCRIPTION[] = QT_TR_NOOP(
376376
"Enables the use of AR and Gecko cheat codes which can be used to modify games' behavior. "
377377
"These codes can be configured with the Cheats Manager in the Tools menu."

0 commit comments

Comments
 (0)