mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Vulkan: Fix FramebufferManagerBase::m_EFBLayers being set out-of-range
This commit is contained in:
parent
173a33886c
commit
48a8063cd5
@ -164,7 +164,7 @@ bool FramebufferManager::CreateEFBFramebuffer()
|
||||
INFO_LOG(VIDEO, "EFB size: %ux%ux%u", efb_width, efb_height, efb_layers);
|
||||
|
||||
// Update the static variable in the base class. Why does this even exist?
|
||||
FramebufferManagerBase::m_EFBLayers = g_ActiveConfig.iMultisamples;
|
||||
FramebufferManagerBase::m_EFBLayers = efb_layers;
|
||||
|
||||
// Allocate EFB render targets
|
||||
m_efb_color_texture =
|
||||
|
Loading…
Reference in New Issue
Block a user