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:
Russell Joyce 2020-06-15 18:29:04 +01:00
parent 5261facbd7
commit 875a635648
No known key found for this signature in database
GPG key ID: 3D46BD9018AF7B72

View file

@ -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 */