mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
6e5b8c25dd
commit
2e1ea22532
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue