diff options
| author | Scott Mansell <phiren@gmail.com> | 2023-01-31 17:58:54 +1300 |
|---|---|---|
| committer | Scott Mansell <phiren@gmail.com> | 2023-02-09 18:36:20 +1300 |
| commit | 9b5397abdb643b5d40211e71f7a58bb3814c29c4 (patch) | |
| tree | f03f4cbb0cea40f0229f6ddab3f46ef802ee6e7b /Source/Core/VideoCommon/VideoState.cpp | |
| parent | 31cfe8250d5a27bd586136d0b71b09736861ad7d (diff) | |
Move WidescreenHeuristic to it's own class
It's about the only thing left in renderer
Diffstat (limited to 'Source/Core/VideoCommon/VideoState.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoState.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoState.cpp b/Source/Core/VideoCommon/VideoState.cpp index 5aae09e354..45b06e4973 100644 --- a/Source/Core/VideoCommon/VideoState.cpp +++ b/Source/Core/VideoCommon/VideoState.cpp @@ -26,6 +26,7 @@ #include "VideoCommon/VertexLoaderManager.h" #include "VideoCommon/VertexManagerBase.h" #include "VideoCommon/VertexShaderManager.h" +#include "VideoCommon/Widescreen.h" #include "VideoCommon/XFMemory.h" void VideoCommon_DoState(PointerWrap& p) @@ -105,6 +106,9 @@ void VideoCommon_DoState(PointerWrap& p) g_bounding_box->DoState(p); p.DoMarker("Bounding Box"); + g_widescreen->DoState(p); + p.DoMarker("Widescreen"); + // Refresh state. if (p.IsReadMode()) { |
