mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[d3d9] Fix missing else brackets in ResetSwapchain
This commit is contained in:
parent
428c98bc63
commit
20490b678f
1 changed files with 2 additions and 1 deletions
|
@ -7842,9 +7842,10 @@ namespace dxvk {
|
|||
if (FAILED(hr))
|
||||
return hr;
|
||||
}
|
||||
else
|
||||
else {
|
||||
m_implicitSwapchain = new D3D9SwapChainEx(this, pPresentationParameters, pFullscreenDisplayMode);
|
||||
m_mostRecentlyUsedSwapchain = m_implicitSwapchain.ptr();
|
||||
}
|
||||
|
||||
if (pPresentationParameters->EnableAutoDepthStencil) {
|
||||
D3D9_COMMON_TEXTURE_DESC desc;
|
||||
|
|
Loading…
Add table
Reference in a new issue