diff options
-rw-r--r-- | Makefile.libretro | 2 | ||||
-rw-r--r-- | frontend/libretro.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index b10aa43..3ff091a 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -79,6 +79,8 @@ else ifeq ($(platform), wii) CFLAGS += -DGEKKO -DHW_RVL -mrvl -mcpu=750 -meabi -mhard-float -DBLARGG_BIG_ENDIAN=1 -D__ppc__ else ifeq ($(platform), qnx) TARGET := libretro_pcsx_rearmed_qnx.so + CC = qcc -Vgcc_ntoarmv7le + AR = qcc -Vgcc_ntoarmv7le HAVE_NEON = 1 USE_DYNAREC = 1 DRC_CACHE_BASE = 0 diff --git a/frontend/libretro.c b/frontend/libretro.c index e22ef5b..f916f57 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -250,7 +250,7 @@ void retro_get_system_info(struct retro_system_info *info) { memset(info, 0, sizeof(*info)); info->library_name = "PCSX-ReARMed"; - info->library_version = REV; + info->library_version = "r19"; info->valid_extensions = "bin|cue|img|mdf|pbp|cbn"; info->need_fullpath = true; } |