MAX_QPATH, not MAX_PATH.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1225 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Mark Olsen 2005-08-12 16:59:26 +00:00
parent 62e8570d4b
commit c34e488867

View file

@ -3456,7 +3456,7 @@ int CSQC_PRFileSize (char *path)
if (!strcmp(path, "csprogs.dat"))
{
char newname[MAX_QPATH];
_snprintf(newname, MAX_PATH, "csprogsvers/%x.dat", csqcchecksum);
_snprintf(newname, MAX_QPATH, "csprogsvers/%x.dat", csqcchecksum);
file = COM_LoadTempFile (newname);
if (file)