mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-19 08:51:59 +00:00
fix the client getting stuck trying to download (eg) "skins/ .pcx"
This commit is contained in:
parent
5a2538faaf
commit
87e4148ffc
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ CL_CheckOrDownloadFile (const char *filename)
|
|||
|
||||
MSG_WriteByte (&cls.netchan.message, clc_stringcmd);
|
||||
MSG_WriteString (&cls.netchan.message,
|
||||
va ("download %s", cls.downloadname));
|
||||
va ("download \"%s\"", cls.downloadname));
|
||||
|
||||
cls.downloadnumber++;
|
||||
|
||||
|
|
Loading…
Reference in a new issue