From 91da30299dcd7ab0cd4f381e80f5ab052a95cdac Mon Sep 17 00:00:00 2001 From: Spoike Date: Tue, 14 Jul 2009 15:11:31 +0000 Subject: [PATCH] Whoops, this fixes up the path. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3274 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/common/fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/fs.c b/engine/common/fs.c index 20e04752f..8aaa64f5c 100644 --- a/engine/common/fs.c +++ b/engine/common/fs.c @@ -1467,7 +1467,7 @@ static void FS_AddDataFiles(const char *purepath, const char *pathto, searchpath if (!handle) break; snprintf (pakfile, sizeof(pakfile), "%spak%i.%s/", pathto, i, extension); - snprintf (purefile, sizeof(pakfile), "%spak%i.%s", purepath, i, extension); + snprintf (purefile, sizeof(pakfile), "%s/pak%i.%s", purepath, i, extension); FS_AddPathHandle(purefile, pakfile, funcs, handle, true, false, false, (unsigned int)-1); }