From: divverent Date: Sun, 9 Dec 2007 22:44:24 +0000 (+0000) Subject: CMDBUFSIZE increased to 128k. Hopefully it's enough this time. X-Git-Tag: xonotic-v0.1.0preview~2708 X-Git-Url: https://git.xonotic.org/?a=commitdiff_plain;h=e0f21f3a00c78fc4316b353b72b60174086df848;p=xonotic%2Fdarkplaces.git CMDBUFSIZE increased to 128k. Hopefully it's enough this time. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7782 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cmd.c b/cmd.c index e8a275f5..3a269baa 100644 --- a/cmd.c +++ b/cmd.c @@ -24,7 +24,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define MAX_ALIAS_NAME 32 // this is the largest script file that can be executed in one step // LordHavoc: inreased this from 8192 to 32768 -#define CMDBUFSIZE 32768 +// div0: increased this from 32k to 128k +#define CMDBUFSIZE 131072 // maximum number of parameters to a command #define MAX_ARGS 80 // maximum tokenizable commandline length (counting NUL terminations)