1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

Fix regression caused by core info file caching - Downloads was no

longer showing up in Load Content
This commit is contained in:
twinaphex 2021-05-22 16:25:05 +02:00
parent 9cd19d4944
commit 33de17548b

View File

@ -1846,6 +1846,12 @@ static core_info_list_t *core_info_list_new(const char *path,
* cannot be cached */
info->is_locked = core_info_path_is_locked(path_list->lock_list,
core_filename);
/* 'info_count' is normally incremented inside
* core_info_parse_config_file(). If core entry
* is cached, must instead increment the value
* here */
if (info->has_info)
core_info_list->info_count++;
continue;
}
}