From 08124713bda32932a0ac1aa7ea74bb40440de01a Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Thu, 18 Nov 2010 04:01:16 +0000 Subject: [PATCH] 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 --- Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp b/Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp index dcb2ba4e2f..f02b8d8ba4 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp @@ -175,9 +175,9 @@ THREAD_RETURN XEventThread(void *pArg) case XK_5: OSDChoice = 3; // 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; } else