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))
|
else if (IsHotkey(event, HK_TOGGLE_EFBCOPIES))
|
||||||
{
|
{
|
||||||
OSDChoice = 3;
|
OSDChoice = 3;
|
||||||
// Toggle EFB copy
|
// Toggle EFB copies between EFB2RAM and EFB2Texture
|
||||||
if (!g_Config.bEFBCopyEnable || g_Config.bCopyEFBToTexture)
|
g_Config.bCopyEFBToTexture = !g_Config.bCopyEFBToTexture;
|
||||||
{
|
|
||||||
g_Config.bEFBCopyEnable ^= true;
|
|
||||||
g_Config.bCopyEFBToTexture = false;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
g_Config.bCopyEFBToTexture = !g_Config.bCopyEFBToTexture;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else if (IsHotkey(event, HK_TOGGLE_FOG))
|
else if (IsHotkey(event, HK_TOGGLE_FOG))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue