VideoCommon: always enable efb copy

This commit is contained in:
degasus
2015-02-21 11:45:48 +01:00
parent 0e34737390
commit 1313d3461f
8 changed files with 9 additions and 38 deletions

View File

@ -1344,14 +1344,7 @@ void CFrame::ParseHotkeys(wxKeyEvent &event)
{
OSDChoice = 3;
// Toggle EFB copies between EFB2RAM and EFB2Texture
if (!g_Config.bEFBCopyEnable)
{
OSD::AddMessage("EFB Copies are disabled, enable them in Graphics settings for toggling", 6000);
}
else
{
g_Config.bCopyEFBToTexture = !g_Config.bCopyEFBToTexture;
}
g_Config.bCopyEFBToTexture = !g_Config.bCopyEFBToTexture;
}
else if (IsHotkey(event, HK_TOGGLE_FOG))
{