Remove "EFB Copies Disabled" option from hotkey toggling cycle.
This commit is contained in:
parent
f9650c52f8
commit
18e13aacf7
|
@ -1013,16 +1013,8 @@ void CFrame::OnKeyDown(wxKeyEvent& event)
|
|||
else if (IsHotkey(event, HK_TOGGLE_EFBCOPIES))
|
||||
{
|
||||
OSDChoice = 3;
|
||||
// Toggle EFB copy
|
||||
if (!g_Config.bEFBCopyEnable || g_Config.bCopyEFBToTexture)
|
||||
{
|
||||
g_Config.bEFBCopyEnable ^= true;
|
||||
g_Config.bCopyEFBToTexture = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
g_Config.bCopyEFBToTexture = !g_Config.bCopyEFBToTexture;
|
||||
}
|
||||
// Toggle EFB copies between EFB2RAM and EFB2Texture
|
||||
g_Config.bCopyEFBToTexture = !g_Config.bCopyEFBToTexture;
|
||||
}
|
||||
else if (IsHotkey(event, HK_TOGGLE_FOG))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue