From d4102f2816e6f838e2cbeb116c1cc50ea48b825f Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 19 Jan 2016 17:43:37 +0100 Subject: [PATCH] rename load_content_need_fullpath to load_content_from_compressed_archive --- content.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content.c b/content.c index d1470b7aeb..52281e34f7 100644 --- a/content.c +++ b/content.c @@ -399,7 +399,7 @@ static bool load_content_append_to_temporary_content(const char *elem, } #ifdef HAVE_COMPRESSION -static bool load_content_need_fullpath( +static bool load_content_from_compressed_archive( struct retro_game_info *info, unsigned i, struct string_list* additional_path_allocs, bool need_fullpath, const char *path) @@ -512,7 +512,7 @@ static bool load_content( " load it on its own.\n"); #ifdef HAVE_COMPRESSION - if (!load_content_need_fullpath(&info[i], i, + if (!load_content_from_compressed_archive(&info[i], i, additional_path_allocs, need_fullpath, path)) return false; #endif