Skip to content

Commit

Permalink
gsdx: fix TVshader case option
Browse files Browse the repository at this point in the history
  • Loading branch information
gregory38 committed May 31, 2016
1 parent 564bf8a commit 6d21961
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/GSdx/GSSettingsDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ GSShaderDlg::GSShaderDlg() :
void GSShaderDlg::OnInit()
{
//TV Shader
ComboBoxInit(IDC_TVSHADER, theApp.m_gs_tv_shaders, theApp.GetConfigI("TVshader"));
ComboBoxInit(IDC_TVSHADER, theApp.m_gs_tv_shaders, theApp.GetConfigI("TVShader"));

//Shade Boost
CheckDlgButton(m_hWnd, IDC_SHADEBOOST, theApp.GetConfigB("ShadeBoost"));
Expand Down Expand Up @@ -544,7 +544,7 @@ bool GSShaderDlg::OnMessage(UINT message, WPARAM wParam, LPARAM lParam)
//TV Shader
if (ComboBoxGetSelData(IDC_TVSHADER, data))
{
theApp.SetConfig("TVshader", (int)data);
theApp.SetConfig("TVShader", (int)data);
}
// Shade Boost
theApp.SetConfig("ShadeBoost", (int)IsDlgButtonChecked(m_hWnd, IDC_SHADEBOOST));
Expand Down

0 comments on commit 6d21961

Please sign in to comment.