uxn

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

commit 0c26811277228bfbc68db1853a81fc05739351c9
parent 8b4301ce42a7af7a8c03f410adc3a66f2a717793
Author: Andrew Alderwick <andrew@alderwick.co.uk>
Date:   Sun, 28 Mar 2021 11:50:53 +0100

Fix LITr and LIT2r.

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

diff --git a/src/uxn.c b/src/uxn.c @@ -125,7 +125,7 @@ haltuxn(Uxn *u, char *name, int id) void lituxn(Uxn *u, Uint8 instr) { - push8(&u->wst, instr); + push8(u->src, instr); u->literal--; }