diff options
| author | JMC47 <JMC4789@gmail.com> | 2025-11-11 20:58:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-11 20:58:35 -0500 |
| commit | f63796c4804676f329f6c20bb376b16819933c37 (patch) | |
| tree | 9c06985495337a193626d0b28229db63cfed9846 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | b8236d4662a1b21189cc28033ad1ece8294bc432 (diff) | |
| parent | 2f20c12d82d367e6ebd3f5b772ebea62ccf05da7 (diff) | |
Merge pull request #14071 from iwubcode/avoid_config_framebuffer_manager
VideoCommon: pass the EFB buffer scale into the FramebufferManager
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index c4d764176c..d9444efaf4 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -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()) |
