mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 06:32:48 +00:00
(Menu) Cleanups
This commit is contained in:
parent
9edf8ecab0
commit
0b5a62ff9e
@ -6906,17 +6906,17 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type,
|
|||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
||||||
filebrowser_clear_type();
|
filebrowser_clear_type();
|
||||||
info->type_default = FILE_TYPE_RDB;
|
|
||||||
if (!string_is_empty(info->exts))
|
if (!string_is_empty(info->exts))
|
||||||
free(info->exts);
|
free(info->exts);
|
||||||
info->exts = strdup(
|
if (info->path)
|
||||||
|
free(info->path);
|
||||||
|
info->type_default = FILE_TYPE_RDB;
|
||||||
|
info->exts = strdup(
|
||||||
file_path_str(FILE_PATH_RDB_EXTENSION));
|
file_path_str(FILE_PATH_RDB_EXTENSION));
|
||||||
info->enum_idx = MENU_ENUM_LABEL_PLAYLISTS_TAB;
|
info->enum_idx = MENU_ENUM_LABEL_PLAYLISTS_TAB;
|
||||||
load_content = false;
|
load_content = false;
|
||||||
use_filebrowser = true;
|
use_filebrowser = true;
|
||||||
if (info->path)
|
info->path = strdup(settings->paths.path_content_database);
|
||||||
free(info->path);
|
|
||||||
info->path = strdup(settings->paths.path_content_database);
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case DISPLAYLIST_DATABASE_CURSORS:
|
case DISPLAYLIST_DATABASE_CURSORS:
|
||||||
@ -6924,29 +6924,35 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type,
|
|||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
||||||
filebrowser_clear_type();
|
filebrowser_clear_type();
|
||||||
info->type_default = FILE_TYPE_CURSOR;
|
|
||||||
load_content = false;
|
|
||||||
use_filebrowser = true;
|
|
||||||
if (!string_is_empty(info->exts))
|
if (!string_is_empty(info->exts))
|
||||||
free(info->exts);
|
free(info->exts);
|
||||||
if (info->path)
|
if (info->path)
|
||||||
free(info->path);
|
free(info->path);
|
||||||
|
info->type_default = FILE_TYPE_CURSOR;
|
||||||
info->exts = strdup("dbc");
|
info->exts = strdup("dbc");
|
||||||
|
load_content = false;
|
||||||
|
use_filebrowser = true;
|
||||||
info->path = strdup(settings->paths.directory_cursor);
|
info->path = strdup(settings->paths.directory_cursor);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case DISPLAYLIST_SHADER_PASS:
|
||||||
case DISPLAYLIST_SHADER_PRESET:
|
case DISPLAYLIST_SHADER_PRESET:
|
||||||
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
||||||
{
|
{
|
||||||
char new_exts[PATH_MAX_LENGTH];
|
char new_exts[PATH_MAX_LENGTH];
|
||||||
union string_list_elem_attr attr;
|
union string_list_elem_attr attr;
|
||||||
struct string_list *str_list = string_list_new();
|
struct string_list *str_list = string_list_new();
|
||||||
|
|
||||||
attr.i = 0;
|
attr.i = 0;
|
||||||
|
|
||||||
new_exts[0] = '\0';
|
new_exts[0] = '\0';
|
||||||
|
|
||||||
filebrowser_clear_type();
|
filebrowser_clear_type();
|
||||||
info->type_default = FILE_TYPE_SHADER_PRESET;
|
|
||||||
|
if (type == DISPLAYLIST_SHADER_PRESET)
|
||||||
|
info->type_default = FILE_TYPE_SHADER_PRESET;
|
||||||
|
else if (type == DISPLAYLIST_SHADER_PASS)
|
||||||
|
info->type_default = FILE_TYPE_SHADER;
|
||||||
|
|
||||||
{
|
{
|
||||||
gfx_ctx_flags_t flags;
|
gfx_ctx_flags_t flags;
|
||||||
@ -6974,46 +6980,6 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type,
|
|||||||
use_filebrowser = true;
|
use_filebrowser = true;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case DISPLAYLIST_SHADER_PASS:
|
|
||||||
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
|
||||||
{
|
|
||||||
char new_exts[PATH_MAX_LENGTH];
|
|
||||||
union string_list_elem_attr attr;
|
|
||||||
struct string_list *str_list = string_list_new();
|
|
||||||
|
|
||||||
attr.i = 0;
|
|
||||||
|
|
||||||
new_exts[0] = '\0';
|
|
||||||
|
|
||||||
filebrowser_clear_type();
|
|
||||||
info->type_default = FILE_TYPE_SHADER;
|
|
||||||
|
|
||||||
{
|
|
||||||
gfx_ctx_flags_t flags;
|
|
||||||
if (video_driver_get_all_flags(&flags, GFX_CTX_FLAGS_SHADERS_CG))
|
|
||||||
string_list_append(str_list, "cg", attr);
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
gfx_ctx_flags_t flags;
|
|
||||||
if (video_driver_get_all_flags(&flags, GFX_CTX_FLAGS_SHADERS_GLSL))
|
|
||||||
string_list_append(str_list, "glsl", attr);
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
gfx_ctx_flags_t flags;
|
|
||||||
if (video_driver_get_all_flags(&flags, GFX_CTX_FLAGS_SHADERS_SLANG))
|
|
||||||
string_list_append(str_list, "slang", attr);
|
|
||||||
}
|
|
||||||
|
|
||||||
string_list_join_concat(new_exts, sizeof(new_exts), str_list, "|");
|
|
||||||
if (!string_is_empty(info->exts))
|
|
||||||
free(info->exts);
|
|
||||||
info->exts = strdup(new_exts);
|
|
||||||
string_list_free(str_list);
|
|
||||||
use_filebrowser = true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case DISPLAYLIST_IMAGES:
|
case DISPLAYLIST_IMAGES:
|
||||||
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
||||||
if ( (filebrowser_get_type() != FILEBROWSER_SELECT_FILE)
|
if ( (filebrowser_get_type() != FILEBROWSER_SELECT_FILE)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user