summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Present.cpp
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2025-11-11 20:58:35 -0500
committerGitHub <noreply@github.com>2025-11-11 20:58:35 -0500
commitf63796c4804676f329f6c20bb376b16819933c37 (patch)
tree9c06985495337a193626d0b28229db63cfed9846 /Source/Core/VideoCommon/Present.cpp
parentb8236d4662a1b21189cc28033ad1ece8294bc432 (diff)
parent2f20c12d82d367e6ebd3f5b772ebea62ccf05da7 (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/Present.cpp')
-rw-r--r--Source/Core/VideoCommon/Present.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Present.cpp b/Source/Core/VideoCommon/Present.cpp
index a8266a18a7..d2ba5f2211 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)
{