From ceae4242fc4775b19193ce16dc3055c7845f20d4 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Fri, 9 Dec 2022 22:59:11 +0100 Subject: VideoCommon/Fifo: Pass Core::System to methods. --- Source/Core/VideoCommon/AsyncRequests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/AsyncRequests.cpp') diff --git a/Source/Core/VideoCommon/AsyncRequests.cpp b/Source/Core/VideoCommon/AsyncRequests.cpp index 7e3b329ad6..aca5be57a4 100644 --- a/Source/Core/VideoCommon/AsyncRequests.cpp +++ b/Source/Core/VideoCommon/AsyncRequests.cpp @@ -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(); }); -- cgit v1.2.3