uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit 765724d2af75a491da8f93211a487b3eb45c2219
parent 0fe8b394471efc879ee2f9cb08b18e7eda91412b
Author: neauoire <aliceffekt@gmail.com>
Date:   Thu, 30 Sep 2021 19:21:04 -0700

Fixed issue where macro size was too large

Diffstat:
Msrc/uxnasm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/uxnasm.c b/src/uxnasm.c @@ -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;