From 87e4148ffc52f1dbe7bf4bfd3cd39bb18b5a3385 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 11 Mar 2002 18:47:14 +0000 Subject: [PATCH] fix the client getting stuck trying to download (eg) "skins/ .pcx" --- qw/source/cl_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qw/source/cl_parse.c b/qw/source/cl_parse.c index ed3d526fa..a64b4ddbf 100644 --- a/qw/source/cl_parse.c +++ b/qw/source/cl_parse.c @@ -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++;