mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04: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
1 changed files with 2 additions and 3 deletions
|
@ -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…
Add table
Reference in a new issue