From c52c73f7622c4d4b4cbe7506e62c195c940fd61e Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 1 Nov 2015 22:54:41 +0100 Subject: VideoCommon: VertexManager -> VertexManagerBase It may be a bit weird to see calls to static functions in VertexManagerBase now, but at least it's easier to see what's going on. --- Source/Core/VideoCommon/Fifo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/Fifo.cpp') diff --git a/Source/Core/VideoCommon/Fifo.cpp b/Source/Core/VideoCommon/Fifo.cpp index 2395d2b324..21888c0514 100644 --- a/Source/Core/VideoCommon/Fifo.cpp +++ b/Source/Core/VideoCommon/Fifo.cpp @@ -367,7 +367,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. - VertexManager::Flush(); + VertexManagerBase::Flush(); } }, 100); -- cgit v1.2.3