X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=host.c;h=dbc88c59b052280183ab5de951a5d49c57872ae5;hb=277cea019899d1a7d297c270afa9c1c2653c49fa;hp=e7a37d9bea54788470e245d92d35c7e2708b67ef;hpb=f1f0ca1dc12483e48e70b763479e6b7e517a1e1f;p=xonotic%2Fdarkplaces.git 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;