summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Fifo.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-08-21 23:02:37 -0400
committerLioncash <mathew1800@gmail.com>2016-08-21 23:30:38 -0400
commit1392efa91dfb2d86d6a66697212aa078c2f1ddd8 (patch)
tree0fe89b6d4310a9c72adf35f35f1e3fed5ca5b352 /Source/Core/VideoCommon/Fifo.cpp
parentf1964f90d647251b677b3de29d08c4c22ea5344a (diff)
VertexManagerBase: Get rid of static behavior
Diffstat (limited to 'Source/Core/VideoCommon/Fifo.cpp')
-rw-r--r--Source/Core/VideoCommon/Fifo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Fifo.cpp b/Source/Core/VideoCommon/Fifo.cpp
index 48dcd9cf9b..0cd99f8011 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);