0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-23 22:35:11 +00:00

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

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;