Raised label limit to compile noodle

This commit is contained in:
Andrew Alderwick 2021-04-23 15:42:07 +01:00
parent 3c758b734b
commit 75142397b8
1 changed files with 3 additions and 3 deletions

View File

@ -29,9 +29,9 @@ typedef struct {
} Label;
typedef struct {
Uint8 data[256 * 256], llen, mlen;
Uint16 ptr, length;
Label labels[256];
Uint8 data[256 * 256], mlen;
Uint16 ptr, length, llen;
Label labels[512];
Macro macros[256];
} Program;