mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 23:02:16 +00:00
oops, got the sense of the zip flag backwards. Sending uncompressed files when
compressed is wanted and vv is not a good idea.
This commit is contained in:
parent
822453e3e2
commit
667f28178f
1 changed files with 1 additions and 1 deletions
|
@ -737,7 +737,7 @@ void SV_BeginDownload_f(void)
|
|||
|
||||
zip = strchr(Info_ValueForKey (host_client->userinfo, "*cap"), 'z') != 0;
|
||||
|
||||
size = _COM_FOpenFile (name, &file, realname, zip);
|
||||
size = _COM_FOpenFile (name, &file, realname, !zip);
|
||||
|
||||
host_client->download = file;
|
||||
host_client->downloadsize = size;
|
||||
|
|
Loading…
Reference in a new issue