From 2f20c12d82d367e6ebd3f5b772ebea62ccf05da7 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Wed, 5 Nov 2025 21:52:54 -0600 Subject: VideoCommon: pass the EFB buffer scale into the FramebufferManager instead of pulling it from config, in the future this will allow us to have multiple framebuffers --- Source/Core/VideoCommon/Present.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/Present.cpp') diff --git a/Source/Core/VideoCommon/Present.cpp b/Source/Core/VideoCommon/Present.cpp index 24c767cc69..4d2a1ff978 100644 --- a/Source/Core/VideoCommon/Present.cpp +++ b/Source/Core/VideoCommon/Present.cpp @@ -329,7 +329,7 @@ void Presenter::OnBackbufferSet(bool size_changed, bool is_first_set) if (size_changed && !is_first_set && g_ActiveConfig.iEFBScale == EFB_SCALE_AUTO_INTEGRAL && m_auto_resolution_scale != AutoIntegralScale()) { - g_framebuffer_manager->RecreateEFBFramebuffer(); + g_framebuffer_manager->RecreateEFBFramebuffer(g_ActiveConfig.iEFBScale); } if (size_changed || is_first_set) { -- cgit v1.2.3