From 629950a1fa3c54763e8cd830176a141672c7a59f Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Wed, 8 Jul 2009 16:15:33 +0000 Subject: [PATCH] GSdx: New default settings, to avoid common mistakes and problems. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1479 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 8b4caccc1..a89721121 100644 --- a/plugins/GSdx/GSSettingsDlg.cpp +++ b/plugins/GSdx/GSSettingsDlg.cpp @@ -120,10 +120,10 @@ void GSSettingsDlg::OnInit() ComboBoxInit(IDC_INTERLACE, g_interlace, countof(g_interlace), theApp.GetConfig("Interlace", 0)); ComboBoxInit(IDC_ASPECTRATIO, g_aspectratio, countof(g_aspectratio), theApp.GetConfig("AspectRatio", 1)); - CheckDlgButton(m_hWnd, IDC_FILTER, theApp.GetConfig("filter", 1)); - CheckDlgButton(m_hWnd, IDC_PALTEX, theApp.GetConfig("paltex", 0)); + CheckDlgButton(m_hWnd, IDC_FILTER, theApp.GetConfig("filter", 2)); + CheckDlgButton(m_hWnd, IDC_PALTEX, theApp.GetConfig("paltex", 1)); CheckDlgButton(m_hWnd, IDC_VSYNC, theApp.GetConfig("vsync", 0)); - CheckDlgButton(m_hWnd, IDC_LOGZ, theApp.GetConfig("logz", 0)); + CheckDlgButton(m_hWnd, IDC_LOGZ, theApp.GetConfig("logz", 1)); CheckDlgButton(m_hWnd, IDC_FBA, theApp.GetConfig("fba", 1)); CheckDlgButton(m_hWnd, IDC_AA1, theApp.GetConfig("aa1", 0)); CheckDlgButton(m_hWnd, IDC_BLUR, theApp.GetConfig("blur", 0));