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/VideoState.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/VideoState.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VideoState.cpp b/Source/Core/VideoCommon/VideoState.cpp index 3eed6b5de0..ab84e1b001 100644 --- a/Source/Core/VideoCommon/VideoState.cpp +++ b/Source/Core/VideoCommon/VideoState.cpp @@ -57,7 +57,7 @@ void VideoCommon_DoState(PointerWrap& p) GeometryShaderManager::DoState(p); p.DoMarker("GeometryShaderManager"); - VertexManagerBase::DoState(p); + g_vertex_manager->DoState(p); p.DoMarker("VertexManager"); BoundingBox::DoState(p); |
