From 6965774c696a3250cbcae4fafb76bf86e5dc97a3 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 15 Dec 2014 18:33:12 +0100 Subject: [PATCH] read_content - Not sure why Timo S Trunks did this. If need_fullpath is true and the file passed is a 7z/zip archive, pass it straight-as is --- content.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content.c b/content.c index ca1ff31d18..51dc0d662f 100644 --- a/content.c +++ b/content.c @@ -392,6 +392,7 @@ static bool load_content(const struct retro_subsystem_info *special, RARCH_LOG("Content loading skipped. Implementation will" " load it on its own.\n"); +#if 0 #ifdef HAVE_COMPRESSION if (need_fullpath && path_contains_compressed_file(path)) { @@ -432,6 +433,7 @@ static bool load_content(const struct retro_subsystem_info *special, string_list_append(g_extern.temporary_content, new_path, attributes); } +#endif #endif } }