- Re-enable the D3D10_CREATE_DEVICE_SINGLETHREADED flag, since it seems to be stable again.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2283 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2009-12-01 16:16:48 +00:00
parent 97d52323d1
commit f1f6236a02
1 changed files with 2 additions and 2 deletions

View File

@ -75,9 +75,9 @@ bool GSDevice10::Create(GSWnd* wnd)
// NOTE : This flag can be enabled for both managed and unmanaged windows, as soon as // NOTE : This flag can be enabled for both managed and unmanaged windows, as soon as
// PCSX2-side properly implements DXGIFactory mess to disable the internal alt-enter crap // PCSX2-side properly implements DXGIFactory mess to disable the internal alt-enter crap
// that DirectX10 forces upon us (and thus causes threading issues because the window // that DirectX10 forces upon us (and thus causes threading issues because the window
// message pump isn't on the sae thread as the MTGS). // message pump isn't on the same thread as the MTGS).
uint32 flags = m_wnd->IsManaged() ? D3D10_CREATE_DEVICE_SINGLETHREADED : 0; uint32 flags = /*m_wnd->IsManaged() ?*/ D3D10_CREATE_DEVICE_SINGLETHREADED /*: 0*/;
#ifdef DEBUG #ifdef DEBUG
flags |= D3D10_CREATE_DEVICE_DEBUG; flags |= D3D10_CREATE_DEVICE_DEBUG;