From 839bf31c2a14dc7a29f878b472993d6845e85566 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 19 Jan 2016 17:42:14 +0100 Subject: [PATCH] Rename load_content_dont_need_fullpath to load_content_into_memory --- content.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content.c b/content.c index d83d1dcfae..d1470b7aeb 100644 --- a/content.c +++ b/content.c @@ -353,7 +353,7 @@ void save_ram_file(const char *path, int type) } /* Load the content into memory. */ -static bool load_content_dont_need_fullpath( +static bool load_content_into_memory( struct retro_game_info *info, unsigned i, const char *path) @@ -503,7 +503,7 @@ static bool load_content( if (!need_fullpath && *path) { - if (!load_content_dont_need_fullpath(&info[i], i, path)) + if (!load_content_into_memory(&info[i], i, path)) return false; } else