From 872301fbebffcd6f7c2776169184cea82784672b Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Fri, 6 Jan 2012 09:55:23 +0000 Subject: [PATCH] Gsdx: Let users set software parameters (extra threads and line AA) regardless of currently configured renderer. Makes testing far easier. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5051 96395faa-99c1-11dd-bbfe-3dabce05a288 --- plugins/GSdx/GSSettingsDlg.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/GSdx/GSSettingsDlg.cpp b/plugins/GSdx/GSSettingsDlg.cpp index 0a7af7d115..23cb97e7fd 100644 --- a/plugins/GSdx/GSSettingsDlg.cpp +++ b/plugins/GSdx/GSSettingsDlg.cpp @@ -317,9 +317,9 @@ void GSSettingsDlg::UpdateControls() EnableWindow(GetDlgItem(m_hWnd, IDC_PALTEX), hw); EnableWindow(GetDlgItem(m_hWnd, IDC_LOGZ), dx9 && hw && GSDevice9::GetMaxDepth(m_lastValidMsaa) < 32); EnableWindow(GetDlgItem(m_hWnd, IDC_FBA), dx9 && hw); - EnableWindow(GetDlgItem(m_hWnd, IDC_AA1), sw); - EnableWindow(GetDlgItem(m_hWnd, IDC_SWTHREADS_EDIT), sw); - EnableWindow(GetDlgItem(m_hWnd, IDC_SWTHREADS), sw); + //EnableWindow(GetDlgItem(m_hWnd, IDC_AA1), sw); // Let uers set software params regardless of renderer used + //EnableWindow(GetDlgItem(m_hWnd, IDC_SWTHREADS_EDIT), sw); + //EnableWindow(GetDlgItem(m_hWnd, IDC_SWTHREADS), sw); EnableWindow(GetDlgItem(m_hWnd, IDC_MSAAEDIT), hw); EnableWindow(GetDlgItem(m_hWnd, IDC_MSAA), hw);