Fixed issue where macro size was too large

This commit is contained in:
neauoire 2021-09-30 19:21:04 -07:00
parent 0fe8b39447
commit 765724d2af
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ typedef signed char Sint8;
typedef unsigned short Uint16;
typedef struct {
char name[64], items[256][64];
char name[64], items[64][64];
Uint8 len;
} Macro;