diff options
| author | Markus Wick <degasus@users.noreply.github.com> | 2016-08-23 07:33:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-23 07:33:25 +0200 |
| commit | 52af0770c352e5d599f8a95c2c9d2fe98b265418 (patch) | |
| tree | 573dc3416dd0627d76190aa04fb62e047f927c8f /Source/Core/VideoCommon/Fifo.cpp | |
| parent | 8d186a468fffaf73fe36f57d050e7370e37f91ca (diff) | |
| parent | 2bf05a544de9e737714c67ffe2247d661bc5e406 (diff) | |
Merge pull request #4141 from lioncash/vtx
VertexManagerBase: Get rid of static state
Diffstat (limited to 'Source/Core/VideoCommon/Fifo.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Fifo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Fifo.cpp b/Source/Core/VideoCommon/Fifo.cpp index bb4ad817a2..263d21193c 100644 --- a/Source/Core/VideoCommon/Fifo.cpp +++ b/Source/Core/VideoCommon/Fifo.cpp @@ -390,7 +390,7 @@ void RunGpuLoop() // The fifo is empty and it's unlikely we will get any more work in the near future. // Make sure VertexManager finishes drawing any primitives it has stored in it's buffer. - VertexManagerBase::Flush(); + g_vertex_manager->Flush(); } }, 100); |
