Fixed maximum q3 command length bug..
ho hum. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1266 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
a81732a8e0
commit
8b099781da
1 changed files with 1 additions and 1 deletions
|
@ -439,7 +439,7 @@ typedef struct client_s
|
||||||
int last_client_command_num;
|
int last_client_command_num;
|
||||||
int num_server_commands;
|
int num_server_commands;
|
||||||
int num_client_commands;
|
int num_client_commands;
|
||||||
char server_commands[1024][64];
|
char server_commands[64][1024];
|
||||||
char last_client_command[1024];
|
char last_client_command[1024];
|
||||||
#endif
|
#endif
|
||||||
#ifdef PEXT_CSQC
|
#ifdef PEXT_CSQC
|
||||||
|
|
Loading…
Reference in a new issue