forked from fte/fteqw
1
0
Fork 0

Whoops, this fixes up the path.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3274 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2009-07-14 15:11:31 +00:00
parent cd619e991f
commit 91da30299d
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}