gsdx: Make TV Shader F7 toggle temporary

Both the Linux and Windows config dialogs now have a TV Shaders combobox,
so the F7 toggle can be made temporary. This makes the hotkey behaviour
consistent with all the other hotkeys.
This commit is contained in:
Jonathan Li 2015-12-02 19:09:09 +00:00
parent 6e5b8c25dd
commit 2e1ea22532
1 changed files with 0 additions and 2 deletions

View File

@ -571,7 +571,6 @@ void GSRenderer::KeyEvent(GSKeyEventData* e)
case VK_F7:
m_shader = (m_shader + s_post_shader_nb + step) % s_post_shader_nb;
printf("GSdx: Set shader to: %d.\n", (int)m_shader);
theApp.SetConfig("TVShader", (int)m_shader);
return;
case VK_DELETE:
m_aa1 = !m_aa1;
@ -609,7 +608,6 @@ void GSRenderer::KeyEvent(GSKeyEventData* e)
return;
case XK_F7:
m_shader = (m_shader + s_post_shader_nb + step) % s_post_shader_nb;
theApp.SetConfig("TVShader", (int)m_shader);
printf("GSdx: Set shader %d.\n", (int)m_shader);
return;
case XK_Delete: