diff options
| author | iwubcode <iwubcode@users.noreply.github.com> | 2025-11-05 21:52:54 -0600 |
|---|---|---|
| committer | iwubcode <iwubcode@users.noreply.github.com> | 2025-11-05 21:52:54 -0600 |
| commit | 2f20c12d82d367e6ebd3f5b772ebea62ccf05da7 (patch) | |
| tree | 26654aa778568f8f1bfc68d71ead9972f2bf2b3e /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | 2170080f5355fa7f808a22b58e7ff67d0b89edc8 (diff) | |
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
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 63d061e684..f2d5df38f9 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()) |
