From 77ac72e78c476b86280447309575bc990034a3d0 Mon Sep 17 00:00:00 2001 From: Spoike Date: Sat, 29 Oct 2011 23:16:51 +0000 Subject: [PATCH] bumped MAX_NAME limit. seems to not be part of any structures/dynamic allocations, so there's no super-massive memory hole added by this. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3917 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/qclib/qcc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/qclib/qcc.h b/engine/qclib/qcc.h index 19f1440d2..ed465dd08 100644 --- a/engine/qclib/qcc.h +++ b/engine/qclib/qcc.h @@ -42,7 +42,7 @@ extern float (*PRLittleFloat) (float l); #define MAX_ERRORS 10 -#define MAX_NAME 64 // chars long +#define MAX_NAME 256 // chars long extern unsigned int MAX_REGS;