M build.sh => build.sh +1 -1
@@ 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'
M src/uxnemu.c => src/uxnemu.c +0 -1
@@ 70,7 70,6 @@ console_input(Uxn *u, char c)
return uxn_eval(u, PEEK16(d));
}
-
static void
console_deo(Uint8 *d, Uint8 port)
{