From e3dccb8ae480ca7011ffcb4c556bb9d4279df17d Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 16 Oct 2006 22:25:45 +0000 Subject: [PATCH] new error code --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40127 --- sourcepawn/include/sp_vm_types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sourcepawn/include/sp_vm_types.h b/sourcepawn/include/sp_vm_types.h index 9a41d4ab..d6dd8989 100644 --- a/sourcepawn/include/sp_vm_types.h +++ b/sourcepawn/include/sp_vm_types.h @@ -29,6 +29,7 @@ typedef int32_t cell_t; #define SP_ERROR_INSTRUCTION_PARAM 17 /* Instruction had an invalid parameter */ #define SP_ERROR_STACKLEAK 18 /* A native leaked an item on the stack */ #define SP_ERROR_HEAPLEAK 19 /* A native leaked an item on the heap */ +#define SP_ERROR_ARRAY_TOO_BIG 20 /* A dynamic array is too big */ /********************************************** *** The following structures are reference structures.