mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-04-19 13:02:32 +00:00
fix a missing )
This commit is contained in:
parent
076db7b5b2
commit
39ee51118d
2 changed files with 9 additions and 4 deletions
|
@ -1138,10 +1138,15 @@ CL_Download_f (void)
|
|||
strncpy (cls.downloadtempname, cls.downloadname,
|
||||
sizeof (cls.downloadtempname));
|
||||
cls.download = Qopen (cls.downloadname, "wb");
|
||||
cls.downloadtype = dl_single;
|
||||
if (cls.download) {
|
||||
cls.downloadtype = dl_single;
|
||||
|
||||
MSG_WriteByte (&cls.netchan.message, clc_stringcmd);
|
||||
SZ_Print (&cls.netchan.message, va ("download %s\n", Cmd_Argv (1)));
|
||||
MSG_WriteByte (&cls.netchan.message, clc_stringcmd);
|
||||
SZ_Print (&cls.netchan.message, va ("download %s\n", Cmd_Argv (1)));
|
||||
} else {
|
||||
Con_Printf ("error downloading %s: %s\n", Cmd_Argv (1),
|
||||
strerror (errno));
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
|
|
|
@ -130,7 +130,7 @@ GL_Init (void)
|
|||
dither_select (GR_DITHER_2x2);
|
||||
Con_Printf ("2x2.\n");
|
||||
}
|
||||
if (strequal (com_argv[p+1], "4x4") {
|
||||
if (strequal (com_argv[p+1], "4x4")) {
|
||||
dither_select (GR_DITHER_4x4);
|
||||
Con_Printf ("4x4.\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue