From aeb849b10940953cc9653a263e9ad17800e301b0 Mon Sep 17 00:00:00 2001 From: Timo Strunk Date: Fri, 12 Sep 2014 17:48:35 +0200 Subject: [PATCH] Defer core now realizes whether something is compressed or not --- retroarch.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/retroarch.c b/retroarch.c index 27e5c3f1f6..e25248c7f3 100644 --- a/retroarch.c +++ b/retroarch.c @@ -3956,13 +3956,19 @@ int rarch_defer_core(core_info_list_t *core_info, const char *dir, { strlcpy(g_extern.fullpath, deferred_path, sizeof(g_extern.fullpath)); + if (path_is_compressed_file(dir)) + { + /* In case of a compressed archive, we have to join with a hash */ + /* We are going to write at the position of dir: */ + rarch_assert(strlen(dir) < strlen(g_extern.fullpath)); + g_extern.fullpath[strlen(dir)] = '#'; + } if (path_file_exists(info->path)) strlcpy(g_settings.libretro, info->path, sizeof(g_settings.libretro)); return -1; } - return 0; }