diff options
| author | JMC47 <JMC4789@gmail.com> | 2022-01-11 16:08:19 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-11 16:08:19 -0500 |
| commit | c18abfaecc5bf5c21da57d4b8a08f5bf4557187f (patch) | |
| tree | 8078264439ee2d12b4059079361edbef4f91d64a /Source/Core/VideoCommon/CommandProcessor.cpp | |
| parent | d32b13fb36e6616f7bb4a5a395c34ae2f2ada32b (diff) | |
| parent | c82b2dccb5857177a1d75a56368dd1c6716a63c5 (diff) | |
Merge pull request #10356 from AdmiralCurtiss/config-port-core-4
Config: Port remaining Core settings to new config system (the rest).
Diffstat (limited to 'Source/Core/VideoCommon/CommandProcessor.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/CommandProcessor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/CommandProcessor.cpp b/Source/Core/VideoCommon/CommandProcessor.cpp index ddaa0e72a3..c80469f89d 100644 --- a/Source/Core/VideoCommon/CommandProcessor.cpp +++ b/Source/Core/VideoCommon/CommandProcessor.cpp @@ -17,6 +17,7 @@ #include "Core/HW/GPFifo.h" #include "Core/HW/MMIO.h" #include "Core/HW/ProcessorInterface.h" +#include "Core/System.h" #include "VideoCommon/Fifo.h" namespace CommandProcessor @@ -42,7 +43,7 @@ static Common::Flag s_interrupt_waiting; static bool IsOnThread() { - return SConfig::GetInstance().bCPUThread; + return Core::System::GetInstance().IsDualCoreMode(); } static void UpdateInterrupts_Wrapper(u64 userdata, s64 cyclesLate) |
