Browse code

Use uxn-fast in bug until the callback masks are ported

Devine Lu Linvega authored on 03/03/2023 20:02:42
Showing 2 changed files
... ...
@@ -91,7 +91,7 @@ if [ $debug = 1 ];
91 91
 then
92 92
 	echo "[debug]"
93 93
 	CFLAGS="${CFLAGS} -DDEBUG -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined"
94
-	CORE='src/uxn.c'
94
+	CORE='src/uxn-fast.c'
95 95
 else
96 96
 	CFLAGS="${CFLAGS} -DNDEBUG -O2 -g0 -s"
97 97
 	CORE='src/uxn-fast.c'
... ...
@@ -70,7 +70,6 @@ console_input(Uxn *u, char c)
70 70
 	return uxn_eval(u, PEEK16(d));
71 71
 }
72 72
 
73
-
74 73
 static void
75 74
 console_deo(Uint8 *d, Uint8 port)
76 75
 {