mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-26 13:50:53 +00:00
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:
parent
62e8570d4b
commit
c34e488867
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue