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
@@ -369,7 +369,7 @@ void CheckForConfigChanges()
if (changed_bits & (CONFIG_CHANGE_BIT_MULTISAMPLES | CONFIG_CHANGE_BIT_STEREO_MODE |
CONFIG_CHANGE_BIT_TARGET_SIZE | CONFIG_CHANGE_BIT_HDR))
{
g_framebuffer_manager->RecreateEFBFramebuffer();
g_framebuffer_manager->RecreateEFBFramebuffer(g_ActiveConfig.iEFBScale);
}
if (old_scale != g_framebuffer_manager->GetEFBScale())