mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
show subsystem roms within archives
This commit is contained in:
parent
f78f5c27ce
commit
caafe61f07
@ -65,6 +65,8 @@ void filebrowser_parse(void *data, unsigned type_data)
|
|||||||
unsigned files_count = 0;
|
unsigned files_count = 0;
|
||||||
unsigned dirs_count = 0;
|
unsigned dirs_count = 0;
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
|
rarch_system_info_t *system = runloop_get_system_info();
|
||||||
|
const struct retro_subsystem_info* subsystem = NULL;
|
||||||
menu_displaylist_info_t *info = (menu_displaylist_info_t*)data;
|
menu_displaylist_info_t *info = (menu_displaylist_info_t*)data;
|
||||||
enum menu_displaylist_ctl_state type = (enum menu_displaylist_ctl_state)
|
enum menu_displaylist_ctl_state type = (enum menu_displaylist_ctl_state)
|
||||||
type_data;
|
type_data;
|
||||||
@ -79,16 +81,25 @@ void filebrowser_parse(void *data, unsigned type_data)
|
|||||||
filter_ext = false;
|
filter_ext = false;
|
||||||
|
|
||||||
if (info && path_is_compressed)
|
if (info && path_is_compressed)
|
||||||
|
{
|
||||||
|
if (filebrowser_types != FILEBROWSER_SELECT_FILE_SUBSYSTEM)
|
||||||
str_list = file_archive_get_file_list(path, info->exts);
|
str_list = file_archive_get_file_list(path, info->exts);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
subsystem = system->subsystem.data + content_get_subsystem();
|
||||||
|
str_list = file_archive_get_file_list(path, subsystem->roms[content_get_subsystem_rom_id()].valid_extensions);
|
||||||
|
}
|
||||||
|
}
|
||||||
else if (!string_is_empty(path) && filebrowser_types != FILEBROWSER_SELECT_FILE_SUBSYSTEM)
|
else if (!string_is_empty(path) && filebrowser_types != FILEBROWSER_SELECT_FILE_SUBSYSTEM)
|
||||||
|
{
|
||||||
str_list = dir_list_new(path,
|
str_list = dir_list_new(path,
|
||||||
(filter_ext && info) ? info->exts : NULL,
|
(filter_ext && info) ? info->exts : NULL,
|
||||||
true, settings->bools.show_hidden_files, true, false);
|
true, settings->bools.show_hidden_files, true, false);
|
||||||
|
}
|
||||||
else if (!string_is_empty(path) && filebrowser_types == FILEBROWSER_SELECT_FILE_SUBSYSTEM)
|
else if (!string_is_empty(path) && filebrowser_types == FILEBROWSER_SELECT_FILE_SUBSYSTEM)
|
||||||
{
|
{
|
||||||
rarch_system_info_t *system = runloop_get_system_info();
|
|
||||||
const struct retro_subsystem_info* subsystem = NULL;
|
|
||||||
subsystem = system->subsystem.data + content_get_subsystem();
|
subsystem = system->subsystem.data + content_get_subsystem();
|
||||||
|
|
||||||
if (subsystem && content_get_subsystem_rom_id() < subsystem->num_roms)
|
if (subsystem && content_get_subsystem_rom_id() < subsystem->num_roms)
|
||||||
{
|
{
|
||||||
str_list = dir_list_new(path,
|
str_list = dir_list_new(path,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user