From 63907397470166b1dfcfe80b3572714105d6d5ed Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 16 Feb 2015 16:49:05 +0100 Subject: [PATCH] Refactor load_content_need_fullpath --- content.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content.c b/content.c index 6c9f3b0ba9..503a0479a7 100644 --- a/content.c +++ b/content.c @@ -489,9 +489,6 @@ static bool load_content_need_fullpath( if (!path_contains_compressed_file(path)) return true; - RARCH_LOG("Content loading skipped. Implementation will" - " load it on its own.\n"); - RARCH_LOG("Compressed file in case of need_fullpath." "Now extracting to temporary directory.\n"); @@ -534,8 +531,8 @@ static bool load_content_need_fullpath( string_list_append(g_extern.temporary_content, new_path, attributes); - return true; #endif + return true; } /** @@ -589,6 +586,9 @@ static bool load_content(const struct retro_subsystem_info *special, } else { + RARCH_LOG("Content loading skipped. Implementation will" + " load it on its own.\n"); + if (!load_content_need_fullpath(&info[i], i, additional_path_allocs, need_fullpath, path)) goto end;