Rearrange to right spot (I blame github editor ;p)

This commit is contained in:
Kieran Hanrahan 2014-11-11 00:17:21 +00:00
parent 7adc7c4833
commit b60e5a62fc
1 changed files with 4 additions and 4 deletions

View File

@ -169,10 +169,6 @@ void GSSettingsDlg::OnInit()
// External FX shader
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
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
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));
}
break;