mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
VideoCommon/Fifo: Pass Core::System to methods.
This commit is contained in:
parent
5624dd6d39
commit
ceae4242fc
8 changed files with 76 additions and 82 deletions
|
@ -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(); });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue