summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2015-06-12 13:56:53 +0200
committerdegasus <wickmarkus@web.de>2015-06-12 19:07:45 +0200
commitc375111076235313669e71953c877c9512cebd16 (patch)
tree4008bc8648422c51521a65b5209d0b641e9aea07 /Source/Core/VideoBackends/Software/SWCommandProcessor.cpp
parentb9a9fcd26dc29520bddd565827129ee0962ec6d7 (diff)
Options: merge SCoreStartupParameter into SConfig
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWCommandProcessor.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWCommandProcessor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp b/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp
index d60e488e5c..3e43b9a9ef 100644
--- a/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp
+++ b/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp
@@ -106,7 +106,7 @@ void Shutdown()
void RunGpu()
{
- if (!SConfig::GetInstance().m_LocalCoreStartupParameter.bCPUThread)
+ if (!SConfig::GetInstance().bCPUThread)
{
// We are going to do FP math on the main thread so have to save the current state
FPURoundMode::SaveSIMDState();
@@ -289,7 +289,7 @@ static void SetStatus()
if (interrupt != interruptSet.load() && !interruptWaiting.load())
{
u64 userdata = interrupt?1:0;
- if (SConfig::GetInstance().m_LocalCoreStartupParameter.bCPUThread)
+ if (SConfig::GetInstance().bCPUThread)
{
interruptWaiting.store(true);
SWCommandProcessor::UpdateInterruptsFromVideoBackend(userdata);