mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-27 08:05:41 +00:00
libretro: Fix Windows build
This commit is contained in:
parent
f2aa343cae
commit
4c08624ce5
|
@ -111,6 +111,6 @@ bool LibretroD3D11HostDisplay::CheckFramebufferSize(u32 width, u32 height)
|
||||||
if (m_framebuffer.GetWidth() == width && m_framebuffer.GetHeight() == height)
|
if (m_framebuffer.GetWidth() == width && m_framebuffer.GetHeight() == height)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
return m_framebuffer.Create(m_device.Get(), width, height, DXGI_FORMAT_R8G8B8A8_UNORM,
|
return m_framebuffer.Create(m_device.Get(), width, height, 1, DXGI_FORMAT_R8G8B8A8_UNORM,
|
||||||
D3D11_BIND_SHADER_RESOURCE | D3D11_BIND_RENDER_TARGET);
|
D3D11_BIND_SHADER_RESOURCE | D3D11_BIND_RENDER_TARGET);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue