From: havoc Date: Sat, 9 Jul 2011 20:27:07 +0000 (+0000) Subject: added -developer3 for crazy debugging sessions (gl_printcheckerror spew) X-Git-Tag: xonotic-v0.5.0~77 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=75af32bc52fc2d3b17da045ec9836f0221de2180;p=xonotic%2Fdarkplaces.git added -developer3 for crazy debugging sessions (gl_printcheckerror spew) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11242 d7cf8633-e32d-0410-b094-e92efae38249 ::stable-branch::merge=7b26a1146198a553b373ac59406be611e34c50d6 --- diff --git a/host.c b/host.c index e7a37d9b..dbc88c59 100644 --- a/host.c +++ b/host.c @@ -1082,7 +1082,7 @@ static void Host_Init (void) developer.string = "1"; } - if (COM_CheckParm("-developer2")) + if (COM_CheckParm("-developer2") || COM_CheckParm("-developer3")) { developer.value = developer.integer = 1; developer.string = "1"; @@ -1096,6 +1096,12 @@ static void Host_Init (void) developer_memorydebug.string = "1"; } + if (COM_CheckParm("-developer3")) + { + gl_paranoid.integer = 1;gl_paranoid.string = "1"; + gl_printcheckerror.integer = 1;gl_printcheckerror.string = "1"; + } + // COMMANDLINEOPTION: Console: -nostdout disables text output to the terminal the game was launched from if (COM_CheckParm("-nostdout")) sys_nostdout = 1;