mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-28 19:00:23 +00:00
Flip the meaning of the -g switch.
I like asking people if they see FBOs being created, it's helpful.
This commit is contained in:
parent
0b33833a70
commit
2bd447e78c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user