summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/CommandProcessor.cpp
diff options
context:
space:
mode:
authorMathew Maidment <mathew1800@gmail.com>2016-01-25 05:34:43 -0500
committerMathew Maidment <mathew1800@gmail.com>2016-01-25 05:34:43 -0500
commitbdfcaa0e00162805efc692b4b7423f096bd75084 (patch)
tree57b32b13d9640977b3270fa055865dcc9da2a1eb /Source/Core/VideoCommon/CommandProcessor.cpp
parent48e7e5b72e76899197b91fb3fe70f25c4339ca85 (diff)
parent488e7bd46a2504fc763d65ca5151b66cd83e97f9 (diff)
Merge pull request #3560 from lioncash/fifo
Fifo: get rid of global variables
Diffstat (limited to 'Source/Core/VideoCommon/CommandProcessor.cpp')
-rw-r--r--Source/Core/VideoCommon/CommandProcessor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/CommandProcessor.cpp b/Source/Core/VideoCommon/CommandProcessor.cpp
index 747bec83fe..92bb3c715d 100644
--- a/Source/Core/VideoCommon/CommandProcessor.cpp
+++ b/Source/Core/VideoCommon/CommandProcessor.cpp
@@ -302,7 +302,7 @@ void GatherPipeBursted()
// if we aren't linked, we don't care about gather pipe data
if (!m_CPCtrlReg.GPLinkEnable)
{
- if (IsOnThread() && !Fifo::g_use_deterministic_gpu_thread)
+ if (IsOnThread() && !Fifo::UseDeterministicGPUThread())
{
// In multibuffer mode is not allowed write in the same FIFO attached to the GPU.
// Fix Pokemon XD in DC mode.
@@ -368,7 +368,7 @@ void UpdateInterrupts(u64 userdata)
void UpdateInterruptsFromVideoBackend(u64 userdata)
{
- if (!Fifo::g_use_deterministic_gpu_thread)
+ if (!Fifo::UseDeterministicGPUThread())
CoreTiming::ScheduleEvent_Threadsafe(0, et_UpdateInterrupts, userdata);
}