summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/AsyncRequests.cpp
diff options
context:
space:
mode:
authorTilka <tilkax@gmail.com>2023-12-20 12:45:38 +0000
committerGitHub <noreply@github.com>2023-12-20 12:45:38 +0000
commit70b7a59456164606833ebe45e7d790b8f03aab7a (patch)
tree447a9b4dee469ea6a7983109e60c2130ce406995 /Source/Core/VideoCommon/AsyncRequests.cpp
parent01340d7f8dc78c5808a130c9cea85a1b29c85983 (diff)
parentb0d244b77232508dcb9bcf3bf9efd9f57797bf3b (diff)
Merge pull request #12451 from lioncash/fifo
VideoCommon/Fifo: Pass system instance through FifoManager constructor
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 ad854a3dce..92c06f0b90 100644
--- a/Source/Core/VideoCommon/AsyncRequests.cpp
+++ b/Source/Core/VideoCommon/AsyncRequests.cpp
@@ -96,7 +96,7 @@ void AsyncRequests::PushEvent(const AsyncRequests::Event& event, bool blocking)
m_queue.push(event);
auto& system = Core::System::GetInstance();
- system.GetFifo().RunGpu(system);
+ system.GetFifo().RunGpu();
if (blocking)
{
m_cond.wait(lock, [this] { return m_queue.empty(); });