D3D: Initialize the renderer in exclusive fullscreen mode if it is enabled.

This commit is contained in:
Jules Blok 2014-07-08 17:44:26 +02:00
parent 961076a3d5
commit 643c9ff173

View File

@ -264,7 +264,7 @@ HRESULT Create(HWND wnd)
swap_chain_desc.OutputWindow = wnd;
swap_chain_desc.SampleDesc.Count = 1;
swap_chain_desc.SampleDesc.Quality = 0;
swap_chain_desc.Windowed = TRUE;
swap_chain_desc.Windowed = !g_ActiveConfig.bFullscreen;
DXGI_OUTPUT_DESC out_desc;
memset(&out_desc, 0, sizeof(out_desc));