mirror of
https://github.com/libretro/RetroArch
synced 2025-03-31 10:20:41 +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…
x
Reference in New Issue
Block a user