From c375111076235313669e71953c877c9512cebd16 Mon Sep 17 00:00:00 2001 From: degasus Date: Fri, 12 Jun 2015 13:56:53 +0200 Subject: Options: merge SCoreStartupParameter into SConfig --- Source/Core/VideoBackends/Software/SWCommandProcessor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoBackends/Software/SWCommandProcessor.cpp') 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); -- cgit v1.2.3