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

This commit is contained in:
Devine Lu Linvega 2023-03-03 12:02:42 -08:00
parent 32539d02a9
commit 8f979ec0fe
2 changed files with 1 additions and 2 deletions

View File

@ -91,7 +91,7 @@ if [ $debug = 1 ];
then
echo "[debug]"
CFLAGS="${CFLAGS} -DDEBUG -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined"
CORE='src/uxn.c'
CORE='src/uxn-fast.c'
else
CFLAGS="${CFLAGS} -DNDEBUG -O2 -g0 -s"
CORE='src/uxn-fast.c'

View File

@ -70,7 +70,6 @@ console_input(Uxn *u, char c)
return uxn_eval(u, PEEK16(d));
}
static void
console_deo(Uint8 *d, Uint8 port)
{