From bcc5909e004deda64d774456014726083147b860 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 31 Oct 2013 02:36:31 +0100 Subject: [PATCH] (QNX) Add default_libretro_path for __QNX__ --- config.def.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.def.h b/config.def.h index 600073660f..d9e27b17c6 100644 --- a/config.def.h +++ b/config.def.h @@ -316,6 +316,8 @@ static const char *default_libretro_info_path = NULL; #if defined(ANDROID) static const char *default_libretro_path = "/data/data/com.retroarch/cores/"; +#elif defined(__QNX__) +static const char *default_libretro_path = "/app/native/lib/"; #else static const char *default_libretro_path = NULL; #endif