mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-03-31 17:04:40 -04:00
VideoCommon/Fifo: Pass Core::System to methods.
This commit is contained in:
@@ -92,7 +92,7 @@ void AsyncRequests::PushEvent(const AsyncRequests::Event& event, bool blocking)
|
||||
m_queue.push(event);
|
||||
|
||||
auto& system = Core::System::GetInstance();
|
||||
system.GetFifo().RunGpu();
|
||||
system.GetFifo().RunGpu(system);
|
||||
if (blocking)
|
||||
{
|
||||
m_cond.wait(lock, [this] { return m_queue.empty(); });
|
||||
|
||||
Reference in New Issue
Block a user