mirror of
https://github.com/libretro/RetroArch
synced 2025-01-28 14:54:03 +00:00
limit archive path exception only to databases that actually support archives
This commit is contained in:
parent
88c8c49ef8
commit
a800ab68ee
@ -755,9 +755,10 @@ bool core_info_database_supports_content_path(const char *database_path, const c
|
||||
{
|
||||
const core_info_t *info = &core_info_curr_list->list[i];
|
||||
|
||||
if (string_list_find_elem(info->supported_extensions_list, "zip") ||
|
||||
string_list_find_elem(info->supported_extensions_list, "7z"))
|
||||
return false;
|
||||
if (string_list_find_elem(info->databases_list, database))
|
||||
if (string_list_find_elem(info->supported_extensions_list, "zip") ||
|
||||
string_list_find_elem(info->supported_extensions_list, "7z"))
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user