From 2bd447e78cc07b5e293abd08d7c75d6bccbfb2f8 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 21 May 2016 07:58:42 -0700 Subject: [PATCH] Flip the meaning of the -g switch. I like asking people if they see FBOs being created, it's helpful. --- UI/NativeApp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/NativeApp.cpp b/UI/NativeApp.cpp index 9ca8045dd8..9aea371320 100644 --- a/UI/NativeApp.cpp +++ b/UI/NativeApp.cpp @@ -377,7 +377,7 @@ void NativeInit(int argc, const char *argv[], const char *savegame_dir, const ch const char *fileToLog = 0; const char *stateToLoad = 0; - bool gfxLog = false; + bool gfxLog = true; // Parse command line LogTypes::LOG_LEVELS logLevel = LogTypes::LINFO; for (int i = 1; i < argc; i++) { @@ -389,7 +389,7 @@ void NativeInit(int argc, const char *argv[], const char *savegame_dir, const ch logLevel = LogTypes::LDEBUG; break; case 'g': - gfxLog = true; + gfxLog = false; break; case 'j': g_Config.iCpuCore = CPU_CORE_JIT;