diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-12-28 15:38:46 +0100 |
|---|---|---|
| committer | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-12-28 15:52:29 +0100 |
| commit | 50625728e089c8868eb919244d4e6eafa4f4cf79 (patch) | |
| tree | bc88f46cfe671ed8ed25cfa24fe83a9c74b83e3e /Source/Core/VideoCommon/VideoState.cpp | |
| parent | 0900e68986a4fa2254fb3c459f73af4815979e45 (diff) | |
VideoCommon: De-globalize VertexShaderManager class.
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 20af9c9f2b..23db63a65a 100644 --- a/Source/Core/VideoCommon/VideoState.cpp +++ b/Source/Core/VideoCommon/VideoState.cpp @@ -76,7 +76,7 @@ void VideoCommon_DoState(PointerWrap& p) system.GetPixelShaderManager().DoState(p); p.DoMarker("PixelShaderManager"); - VertexShaderManager::DoState(p); + system.GetVertexShaderManager().DoState(p); p.DoMarker("VertexShaderManager"); GeometryShaderManager::DoState(p); |
