The usual linux build fix. I am starting to sound like a broken record.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6436 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Glenn Rice 2010-11-18 04:01:16 +00:00
parent 0816fa2629
commit 08124713bd
1 changed files with 2 additions and 2 deletions

View File

@ -175,9 +175,9 @@ THREAD_RETURN XEventThread(void *pArg)
case XK_5: case XK_5:
OSDChoice = 3; OSDChoice = 3;
// Toggle EFB copy // Toggle EFB copy
if (g_Config.bEFBCopyDisable || g_Config.bCopyEFBToTexture) if (!g_Config.bEFBCopyEnable || g_Config.bCopyEFBToTexture)
{ {
g_Config.bEFBCopyDisable = !g_Config.bEFBCopyDisable; g_Config.bEFBCopyEnable ^= true;
g_Config.bCopyEFBToTexture = false; g_Config.bCopyEFBToTexture = false;
} }
else else