mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 16:39:43 +00:00
Replace this with string_list_append
This commit is contained in:
parent
220b42332d
commit
f4dfde8c47
11
content.c
11
content.c
@ -390,14 +390,6 @@ error:
|
||||
return false;
|
||||
}
|
||||
|
||||
static bool load_content_append_to_temporary_content(
|
||||
struct string_list *temporary_content,
|
||||
const char *elem,
|
||||
union string_list_elem_attr attributes)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
#ifdef HAVE_COMPRESSION
|
||||
static bool load_content_from_compressed_archive(
|
||||
struct string_list *temporary_content,
|
||||
@ -630,10 +622,9 @@ static bool init_content_file_extract(
|
||||
}
|
||||
|
||||
string_list_set(content, i, temp_content);
|
||||
if (!load_content_append_to_temporary_content(temporary_content,
|
||||
if (!string_list_append(temporary_content,
|
||||
temp_content, *attr))
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user