From 58a53951735aba77899ea8f8910a6b68dc52449a Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 6 Sep 2016 18:57:58 -0400 Subject: TextureCacheBase: Eliminate static state --- Source/Core/VideoCommon/VertexManagerBase.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/VertexManagerBase.cpp') diff --git a/Source/Core/VideoCommon/VertexManagerBase.cpp b/Source/Core/VideoCommon/VertexManagerBase.cpp index ab4dced0e9..4ff4c2c528 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.cpp +++ b/Source/Core/VideoCommon/VertexManagerBase.cpp @@ -214,10 +214,10 @@ void VertexManagerBase::Flush() if (bpmem.tevind[i].IsActive() && bpmem.tevind[i].bt < bpmem.genMode.numindstages) usedtextures[bpmem.tevindref.getTexMap(bpmem.tevind[i].bt)] = true; - TextureCacheBase::UnbindTextures(); + g_texture_cache->UnbindTextures(); for (unsigned int i : usedtextures) { - const TextureCacheBase::TCacheEntryBase* tentry = TextureCacheBase::Load(i); + const auto* tentry = g_texture_cache->Load(i); if (tentry) { -- cgit v1.2.3