diff options
| author | Lioncash <mathew1800@gmail.com> | 2016-09-06 18:57:58 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2016-12-09 16:50:37 -0500 |
| commit | 58a53951735aba77899ea8f8910a6b68dc52449a (patch) | |
| tree | 48feeeeb9ce83b66213cf37d4c605ef1d5595244 /Source/Core/VideoCommon/MainBase.cpp | |
| parent | 1fa61af41329652ee92030825f9347d3d3f7ce93 (diff) | |
TextureCacheBase: Eliminate static state
Diffstat (limited to 'Source/Core/VideoCommon/MainBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/MainBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/MainBase.cpp b/Source/Core/VideoCommon/MainBase.cpp index 575fb29709..659eec31b3 100644 --- a/Source/Core/VideoCommon/MainBase.cpp +++ b/Source/Core/VideoCommon/MainBase.cpp @@ -243,6 +243,6 @@ void VideoBackendBase::CheckInvalidState() m_invalid = false; BPReload(); - TextureCacheBase::Invalidate(); + g_texture_cache->Invalidate(); } } |
