See if this builds on Android instead

This commit is contained in:
twinaphex 2020-01-01 12:20:04 +01:00
parent dddc9d553f
commit 819b1dde56
3 changed files with 16 additions and 3 deletions

View File

@ -7,7 +7,7 @@ INCLUDES += -I$(CORE_DIR) \
-I$(CORE_DIR)/retroluxury/src
SOURCES_C += $(CORE_DIR)/src/libretro.c
SOURCES_C += $(CORE_DIR)/src/version.c
SOURCES_C += $(CORE_DIR)/src/libretro_version.c
SOURCES_C += $(CORE_DIR)/src/missing.c
SOURCES_C += $(CORE_DIR)/gwrom/gwrom.c

View File

@ -187,8 +187,8 @@ char* getenv( const char* name )
/*---------------------------------------------------------------------------*/
const char* gw_version = "git";
const char* gw_hithash = "abcde1234";
extern const char* gw_version;
extern const char* gw_hithash;
void retro_get_system_info( struct retro_system_info* info )
{

13
src/libretro_version.c Normal file
View File

@ -0,0 +1,13 @@
const char* gw_version = "1.6.3";
const char* gw_githash = "dddc9d553f7503f17c3dfd1906bc94c07eff8515";
const char* gw_gitstamp =
"+------------------------------------------+\n"
"| GW-LIBRETRO |\n"
"| ____ _ _ ___ _ ____ |\n"
"| | __ ) | | | | |_ _| | | | _ \\ |\n"
"| | _ \\ | | | | | | | | | | | | |\n"
"| | |_) | | |_| | | | | |__ | |_| | |\n"
"| |____/ \\___/ |___| |____| |____/ |\n"
"| |\n"
"| dddc9d553f7503f17c3dfd1906bc94c07eff8515 |\n"
"+------------------------------------------+\n";