From 9b5397abdb643b5d40211e71f7a58bb3814c29c4 Mon Sep 17 00:00:00 2001 From: Scott Mansell Date: Tue, 31 Jan 2023 17:58:54 +1300 Subject: Move WidescreenHeuristic to it's own class It's about the only thing left in renderer --- Source/Core/VideoCommon/VideoState.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Source/Core/VideoCommon/VideoState.cpp') 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()) { -- cgit v1.2.3