From 32ce2be2bfc74f0b395800328c494b423480358d Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 23 Jan 2016 23:31:13 -0500 Subject: Fifo: Make g_use_deterministic_gpu_thread a TU-local variable --- Source/Core/VideoCommon/CommandProcessor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/CommandProcessor.cpp') 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); } -- cgit v1.2.3