android: fix to build updated sources

This commit is contained in:
Sigrid Solveig Haflínudóttir 2022-01-16 01:25:12 +01:00
parent 6a770dcd5a
commit fa569a6e1e
3 changed files with 2 additions and 6 deletions

View File

@ -11,6 +11,7 @@ LOCAL_SRC_FILES := \
$(UXN_DIR)/src/uxnemu.c \
$(UXN_DIR)/src/devices/audio.c \
$(UXN_DIR)/src/devices/controller.c \
$(UXN_DIR)/src/devices/datetime.c \
$(UXN_DIR)/src/devices/file.c \
$(UXN_DIR)/src/devices/mouse.c \
$(UXN_DIR)/src/devices/screen.c \

View File

@ -1 +0,0 @@
../../../../../../bin/boot.rom

View File

@ -6,11 +6,7 @@
#ifdef __ANDROID__
#include <android/log.h>
#undef stdout
#undef stderr
#define stdout ANDROID_LOG_VERBOSE
#define stderr ANDROID_LOG_VERBOSE
#define fprintf(f, ...) __android_log_print(f, "Uxn", __VA_ARGS__)
#define fprintf(f, ...) __android_log_print(ANDROID_LOG_VERBOSE, "Uxn", __VA_ARGS__)
#endif
#pragma GCC diagnostic push