Browse code

Fixed issue where macro size was too large

neauoire authored on 01/10/2021 02:21:04
Showing 1 changed files
... ...
@@ -18,7 +18,7 @@ typedef signed char Sint8;
18 18
 typedef unsigned short Uint16;
19 19
 
20 20
 typedef struct {
21
-	char name[64], items[256][64];
21
+	char name[64], items[64][64];
22 22
 	Uint8 len;
23 23
 } Macro;
24 24