fix a missing )

This commit is contained in:
Bill Currie 2001-01-22 22:40:36 +00:00
parent 076db7b5b2
commit 39ee51118d
2 changed files with 9 additions and 4 deletions

View file

@ -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

View file

@ -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");
}