Increased size of temporary variable creation buffer
Allows for larger arrays to be defined and passed around without hitting the limit, but at a cost of higher stack memory usage in the VariableAllocValueAndCopy() function.
This commit is contained in:
parent
5261facbd7
commit
875a635648
|
@ -4,7 +4,7 @@
|
|||
#include "interpreter.h"
|
||||
|
||||
/* maximum size of a value to temporarily copy while we create a variable */
|
||||
#define MAX_TMP_COPY_BUF (256)
|
||||
#define MAX_TMP_COPY_BUF (2048)
|
||||
|
||||
|
||||
/* initialize the variable system */
|
||||
|
|
Loading…
Reference in a new issue