From fc1d9aef09a60ea8ddf000839f3aed6e25434861 Mon Sep 17 00:00:00 2001 From: Akash Date: Thu, 27 Sep 2018 15:41:52 +0530 Subject: [PATCH] GSdx-GUI: Disable large framebuffer for custom res No longer needed after I combined the aligorithm in my previous commit. --- plugins/GSdx/GSSettingsDlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/GSdx/GSSettingsDlg.cpp b/plugins/GSdx/GSSettingsDlg.cpp index e66e31bcac..7616871dcb 100644 --- a/plugins/GSdx/GSSettingsDlg.cpp +++ b/plugins/GSdx/GSSettingsDlg.cpp @@ -399,7 +399,7 @@ void GSSettingsDlg::UpdateControls() EnableWindow(GetDlgItem(m_hWnd, IDC_MIPMAP_HW), hw); EnableWindow(GetDlgItem(m_hWnd, IDC_MIPMAP_HW_TEXT), hw); EnableWindow(GetDlgItem(m_hWnd, IDC_CRC_LEVEL), hw); - EnableWindow(GetDlgItem(m_hWnd, IDC_LARGE_FB), integer_scaling != 1 && hw); + EnableWindow(GetDlgItem(m_hWnd, IDC_LARGE_FB), integer_scaling > 1 && hw); EnableWindow(GetDlgItem(m_hWnd, IDC_CRC_LEVEL_TEXT), hw); EnableWindow(GetDlgItem(m_hWnd, IDC_OPENCL_DEVICE), ocl); EnableWindow(GetDlgItem(m_hWnd, IDC_RESX), hw && !integer_scaling);