From f1f6236a021f0591522cd04d2eca80419eeb29bf Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Tue, 1 Dec 2009 16:16:48 +0000 Subject: [PATCH] GSdx: - 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 --- plugins/GSdx/GSDevice10.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/GSdx/GSDevice10.cpp b/plugins/GSdx/GSDevice10.cpp index 9b2856f633..32fee3def7 100644 --- a/plugins/GSdx/GSDevice10.cpp +++ b/plugins/GSdx/GSDevice10.cpp @@ -75,9 +75,9 @@ bool GSDevice10::Create(GSWnd* wnd) // 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 // 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 flags |= D3D10_CREATE_DEVICE_DEBUG;