summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/CommandProcessor.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-01-23 23:31:13 -0500
committerLioncash <mathew1800@gmail.com>2016-01-25 05:24:03 -0500
commit32ce2be2bfc74f0b395800328c494b423480358d (patch)
treede3b6dae657cf8a13a69b5d8517f0542c6889b9f /Source/Core/VideoCommon/CommandProcessor.cpp
parent5ebd1e215b29bdbf74317ea1b6cb19578db0e41a (diff)
Fifo: Make g_use_deterministic_gpu_thread a TU-local variable
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);
}