uxn

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

commit d6ef36138393d7cbefff7aac56c35d1447396b8e
parent 037ab10b6aaf671261435a9bcd60171e5f87f20d
Author: neauoire <aliceffekt@gmail.com>
Date:   Mon, 11 Oct 2021 13:35:01 -0700

Corrected raw short length

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

diff --git a/src/uxnasm.c b/src/uxnasm.c @@ -238,7 +238,7 @@ walktoken(char *w) if(sihx(w) && slen(w) == 2) return 1; else if(sihx(w) && slen(w) == 4) - return 1; + return 2; return error("Invalid token", w); }