(Xbox 360) Set default libretro info path and default core path

This commit is contained in:
twinaphex 2014-03-06 02:11:08 +01:00
parent 1c371cf5c4
commit f7c532ea30
2 changed files with 4 additions and 2 deletions

View File

@ -360,6 +360,8 @@ static bool default_core_specific_config = false;
static const char *default_libretro_info_path = "/data/data/com.retroarch/info/";
#elif defined(__QNX__)
static const char *default_libretro_info_path = "/app/native/info/";
#elif defined(_XBOX360)
static const char *default_libretro_info_path = "game:\\";
#else
static const char *default_libretro_info_path = NULL;
#endif
@ -368,6 +370,8 @@ static const char *default_libretro_info_path = NULL;
static const char *default_libretro_path = "/data/data/com.retroarch/cores/";
#elif defined(__QNX__)
static const char *default_libretro_path = "/app/native/lib/";
#elif defined(_XBOX360)
static const char *default_libretro_path = "game:\\";
#else
static const char *default_libretro_path = NULL;
#endif

View File

@ -462,9 +462,7 @@ void menu_free(void)
if (menu_ctx && menu_ctx->free)
menu_ctx->free(rgui);
#ifdef HAVE_DYNAMIC
libretro_free_system_info(&rgui->info);
#endif
file_list_free(rgui->menu_stack);
file_list_free(rgui->selection_buf);