diff options
| author | Stenzek <stenzek@gmail.com> | 2017-03-04 16:39:50 +1000 |
|---|---|---|
| committer | Stenzek <stenzek@gmail.com> | 2017-03-04 16:39:50 +1000 |
| commit | 277829d842ae4aca234de95fb295ed9da043a9fa (patch) | |
| tree | 43d6e4aa6db60b2f54a50ae09772ff0bd9962d28 /Source/Core/VideoCommon/AsyncRequests.cpp | |
| parent | de230f3ebed097ec10dc86465744c17aea032d2e (diff) | |
VideoCommon: Eliminate static state in Renderer
Diffstat (limited to 'Source/Core/VideoCommon/AsyncRequests.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/AsyncRequests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/AsyncRequests.cpp b/Source/Core/VideoCommon/AsyncRequests.cpp index fc6af84f27..f41354730d 100644 --- a/Source/Core/VideoCommon/AsyncRequests.cpp +++ b/Source/Core/VideoCommon/AsyncRequests.cpp @@ -136,8 +136,8 @@ void AsyncRequests::HandleEvent(const AsyncRequests::Event& e) break; case Event::SWAP_EVENT: - Renderer::Swap(e.swap_event.xfbAddr, e.swap_event.fbWidth, e.swap_event.fbStride, - e.swap_event.fbHeight, rc, e.time); + g_renderer->Swap(e.swap_event.xfbAddr, e.swap_event.fbWidth, e.swap_event.fbStride, + e.swap_event.fbHeight, rc, e.time); break; case Event::BBOX_READ: |
