mirror of
https://github.com/blendogames/thirtyflightsofloving.git
synced 2024-11-15 00:41:21 +00:00
Changed size of filename buffers for "entlist" and "properties" commands to MAX_OSPATH.
This commit is contained in:
parent
72861a45cb
commit
a680872065
2 changed files with 4 additions and 4 deletions
|
@ -2228,7 +2228,7 @@ void ClientCommand (edict_t *ent)
|
|||
{
|
||||
if (parm)
|
||||
{
|
||||
char filename[MAX_QPATH];
|
||||
char filename[MAX_OSPATH];
|
||||
edict_t *e;
|
||||
FILE *f;
|
||||
int i;
|
||||
|
@ -2323,7 +2323,7 @@ void ClientCommand (edict_t *ent)
|
|||
{
|
||||
if (parm)
|
||||
{
|
||||
char filename[MAX_QPATH];
|
||||
char filename[MAX_OSPATH];
|
||||
edict_t *e;
|
||||
FILE *f;
|
||||
// int i;
|
||||
|
|
|
@ -2062,7 +2062,7 @@ void ClientCommand (edict_t *ent)
|
|||
{
|
||||
if (parm)
|
||||
{
|
||||
char filename[MAX_QPATH];
|
||||
char filename[MAX_OSPATH];
|
||||
edict_t *e;
|
||||
FILE *f;
|
||||
int i;
|
||||
|
@ -2157,7 +2157,7 @@ void ClientCommand (edict_t *ent)
|
|||
{
|
||||
if (parm)
|
||||
{
|
||||
char filename[MAX_QPATH];
|
||||
char filename[MAX_OSPATH];
|
||||
edict_t *e;
|
||||
FILE *f;
|
||||
// int i;
|
||||
|
|
Loading…
Reference in a new issue