mirror of https://github.com/PCSX2/pcsx2.git
Rearrange to right spot (I blame github editor ;p)
This commit is contained in:
parent
7adc7c4833
commit
b60e5a62fc
|
@ -169,10 +169,6 @@ void GSSettingsDlg::OnInit()
|
||||||
// External FX shader
|
// External FX shader
|
||||||
CheckDlgButton(m_hWnd, IDC_SHADER_FX, theApp.GetConfig("shaderfx", 0));
|
CheckDlgButton(m_hWnd, IDC_SHADER_FX, theApp.GetConfig("shaderfx", 0));
|
||||||
|
|
||||||
// External FX Shader(OpenGL)
|
|
||||||
theApp.SetConfig("shaderfx_conf", "GSdx_FX_Settings.ini");
|
|
||||||
theApp.SetConfig("shaderfx_glsl", "shader.fx");
|
|
||||||
|
|
||||||
// Hacks
|
// Hacks
|
||||||
CheckDlgButton(m_hWnd, IDC_HACKS_ENABLED, theApp.GetConfig("UserHacks", 0));
|
CheckDlgButton(m_hWnd, IDC_HACKS_ENABLED, theApp.GetConfig("UserHacks", 0));
|
||||||
|
|
||||||
|
@ -300,6 +296,10 @@ bool GSSettingsDlg::OnCommand(HWND hWnd, UINT id, UINT code)
|
||||||
// External FX Shader
|
// External FX Shader
|
||||||
theApp.SetConfig("shaderfx", (int)IsDlgButtonChecked(m_hWnd, IDC_SHADER_FX));
|
theApp.SetConfig("shaderfx", (int)IsDlgButtonChecked(m_hWnd, IDC_SHADER_FX));
|
||||||
|
|
||||||
|
// External FX Shader(OpenGL)
|
||||||
|
theApp.SetConfig("shaderfx_conf", "GSdx_FX_Settings.ini");
|
||||||
|
theApp.SetConfig("shaderfx_glsl", "shader.fx");
|
||||||
|
|
||||||
theApp.SetConfig("UserHacks", (int)IsDlgButtonChecked(m_hWnd, IDC_HACKS_ENABLED));
|
theApp.SetConfig("UserHacks", (int)IsDlgButtonChecked(m_hWnd, IDC_HACKS_ENABLED));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue