Remove "EFB Copies Disabled" option from hotkey toggling cycle.

This commit is contained in:
TurboK234 2014-09-05 00:12:04 +03:00
parent f9650c52f8
commit 18e13aacf7
1 changed files with 2 additions and 10 deletions

View File

@ -1013,17 +1013,9 @@ 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
{
// Toggle EFB copies between EFB2RAM and EFB2Texture
g_Config.bCopyEFBToTexture = !g_Config.bCopyEFBToTexture;
}
}
else if (IsHotkey(event, HK_TOGGLE_FOG))
{
OSDChoice = 4;