From 5b837c1f73603ea7f10b204667aa05b78024ad44 Mon Sep 17 00:00:00 2001 From: TimeServ Date: Mon, 7 Aug 2006 01:44:27 +0000 Subject: [PATCH] precache from sound/ not sounds/ git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2371 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/cl_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/cl_parse.c b/engine/client/cl_parse.c index 2c62b347b..d71b215d6 100644 --- a/engine/client/cl_parse.c +++ b/engine/client/cl_parse.c @@ -3755,7 +3755,7 @@ void CL_ParsePrecache(void) if (i >= 1 && i < MAX_SOUNDS) { sfx_t *sfx; - CL_CheckOrEnqueDownloadFile(va("sounds/%s", s), NULL); + CL_CheckOrEnqueDownloadFile(va("sound/%s", s), NULL); sfx = S_PrecacheSound (s); if (!sfx) Con_Printf("svc_precache: S_PrecacheSound(\"%s\") failed\n", s);