mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-08 05:59:06 -06:00
Fifo: Fix SyncGPU.
CBoot::BootUp() did call CoreTiming::Advance which itself blocks on the GPU, but the GPU thread wasn't started already. This commit moves the SyncGPU initialization into the Fifo.cpp file and call it after BootUp().
This commit is contained in:
@ -498,6 +498,9 @@ void EmuThread()
|
||||
|
||||
CBoot::BootUp();
|
||||
|
||||
// This adds the SyncGPU handler to CoreTiming, so now CoreTiming::Advance might block.
|
||||
Fifo::Prepare();
|
||||
|
||||
// Thread is no longer acting as CPU Thread
|
||||
UndeclareAsCPUThread();
|
||||
|
||||
|
Reference in New Issue
Block a user