From 1ff0f478d476a1f65c0b9e1b5eef442a51a9fb19 Mon Sep 17 00:00:00 2001 From: javalia Date: Mon, 4 Jul 2011 15:26:08 -0700 Subject: [PATCH] Increase symbol name limit to 63 characters (bug 4564, r=dvander). --- sourcepawn/compiler/amx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sourcepawn/compiler/amx.h b/sourcepawn/compiler/amx.h index 577afff89..b8de039ad 100644 --- a/sourcepawn/compiler/amx.h +++ b/sourcepawn/compiler/amx.h @@ -228,7 +228,7 @@ typedef struct tagAMX_NATIVE_INFO { #define AMX_USERNUM 4 #define sEXPMAX 19 /* maximum name length for file version <= 6 */ -#define sNAMEMAX 31 /* maximum name length of symbol name */ +#define sNAMEMAX 63 /* maximum name length of symbol name */ typedef struct tagAMX_FUNCSTUB { ucell address;