Use MAX_QPATH instead.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2907 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
20cc7dc9f5
commit
00cd20b9a6
1 changed files with 2 additions and 2 deletions
|
@ -246,7 +246,7 @@ void M_Menu_SinglePlayer_f (void)
|
||||||
|
|
||||||
|
|
||||||
typedef struct demoitem_s {
|
typedef struct demoitem_s {
|
||||||
char name[64];
|
char name[MAX_QPATH];
|
||||||
qboolean isdir;
|
qboolean isdir;
|
||||||
int size;
|
int size;
|
||||||
struct demoitem_s *next;
|
struct demoitem_s *next;
|
||||||
|
@ -387,7 +387,7 @@ static int DemoAddItem(char *filename, int size, void *parm)
|
||||||
demoitem_t *link, *newi;
|
demoitem_t *link, *newi;
|
||||||
int side;
|
int side;
|
||||||
qboolean isdir;
|
qboolean isdir;
|
||||||
char tempfname[MAX_PATH];
|
char tempfname[MAX_QPATH];
|
||||||
|
|
||||||
char *i;
|
char *i;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue