mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-22 18:58:21 +00:00
ignore return value of init_content_file_extract, fixes exit/crash when we can't load the content. (non-compressed corrupt content returns true anyway)
This commit is contained in:
parent
fc1f2cdcf4
commit
1c9a54db27
@ -693,9 +693,8 @@ static bool init_content_file_set_attribs(
|
||||
|
||||
#ifdef HAVE_COMPRESSION
|
||||
/* Try to extract all content we're going to load if appropriate. */
|
||||
if (!init_content_file_extract(temporary_content,
|
||||
content, special, &attr))
|
||||
return false;
|
||||
init_content_file_extract(temporary_content,
|
||||
content, special, &attr);
|
||||
#endif
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user