mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-02 04:32:24 +00:00
Oops, screwed up the paren placement. :)
This commit is contained in:
parent
3ea4bdda68
commit
076db7b5b2
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ GL_Init (void)
|
||||||
|
|
||||||
Con_Printf ("Dithering: ");
|
Con_Printf ("Dithering: ");
|
||||||
|
|
||||||
if ((p = COM_CheckParm ("-dither") && p < com_argc)) {
|
if ((p = COM_CheckParm ("-dither")) && p < com_argc) {
|
||||||
if (strequal (com_argv[p+1], "2x2") {
|
if (strequal (com_argv[p+1], "2x2") {
|
||||||
dither_select (GR_DITHER_2x2);
|
dither_select (GR_DITHER_2x2);
|
||||||
Con_Printf ("2x2.\n");
|
Con_Printf ("2x2.\n");
|
||||||
|
|
Loading…
Reference in a new issue