summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/AsyncRequests.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2022-12-09 22:59:11 +0100
committerAdmiral H. Curtiss <pikachu025@gmail.com>2022-12-10 17:16:26 +0100
commitceae4242fc4775b19193ce16dc3055c7845f20d4 (patch)
tree1d1d05143bdbc3125f1dc9a5b7d3053d50bf8809 /Source/Core/VideoCommon/AsyncRequests.cpp
parent5624dd6d3982aebab498dcc99dafbcfc00983b4f (diff)
VideoCommon/Fifo: Pass Core::System to methods.
Diffstat (limited to 'Source/Core/VideoCommon/AsyncRequests.cpp')
-rw-r--r--Source/Core/VideoCommon/AsyncRequests.cpp2
1 files changed, 1 insertions, 1 deletions
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(); });