mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Remove "EFB Copies Disabled" option from hotkey toggling cycle.
This commit is contained in:
parent
f9650c52f8
commit
18e13aacf7
1 changed files with 2 additions and 10 deletions
|
@ -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…
Add table
Reference in a new issue