Merge pull request #14071 from iwubcode/avoid_config_framebuffer_manager

VideoCommon: pass the EFB buffer scale into the FramebufferManager
This commit is contained in:
JMC47
2025-11-11 20:58:35 -05:00
committed by GitHub
5 changed files with 17 additions and 16 deletions
+1 -1
View File
@@ -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)
{