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/Present.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/Present.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Present.cpp | 2 |
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) { |
