mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
VideoCommon/Fifo: Refactor to class, move to Core::System.
This commit is contained in:
parent
d250e69ddf
commit
5624dd6d39
18 changed files with 377 additions and 300 deletions
|
@ -333,7 +333,8 @@ static void RaiseEvent(int cycles_into_future)
|
|||
|
||||
CoreTiming::FromThread from = CoreTiming::FromThread::NON_CPU;
|
||||
s64 cycles = 0; // we don't care about timings for dual core mode.
|
||||
if (!Core::System::GetInstance().IsDualCoreMode() || Fifo::UseDeterministicGPUThread())
|
||||
auto& system = Core::System::GetInstance();
|
||||
if (!system.IsDualCoreMode() || system.GetFifo().UseDeterministicGPUThread())
|
||||
{
|
||||
from = CoreTiming::FromThread::CPU;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue