mirror of
https://github.com/libretro/RetroArch
synced 2025-04-04 04:20:29 +00:00
Implemented setting for showing/hiding the "Load Core" option in XMB.
This commit is contained in:
parent
032109512a
commit
cc3b64f951
@ -237,6 +237,7 @@ static const bool display_keyboard_overlay = false;
|
|||||||
static bool default_block_config_read = true;
|
static bool default_block_config_read = true;
|
||||||
|
|
||||||
static bool menu_show_online_updater = true;
|
static bool menu_show_online_updater = true;
|
||||||
|
static bool menu_show_load_core = true;
|
||||||
|
|
||||||
#if defined(HAVE_LAKKA) || defined(VITA)
|
#if defined(HAVE_LAKKA) || defined(VITA)
|
||||||
static bool menu_show_core_updater = false;
|
static bool menu_show_core_updater = false;
|
||||||
|
@ -1202,6 +1202,7 @@ static struct config_bool_setting *populate_settings_bool(settings_t *settings,
|
|||||||
SETTING_BOOL("xmb_show_images", &settings->bools.menu_xmb_show_images, true, xmb_show_images, false);
|
SETTING_BOOL("xmb_show_images", &settings->bools.menu_xmb_show_images, true, xmb_show_images, false);
|
||||||
#endif
|
#endif
|
||||||
SETTING_BOOL("xmb_show_music", &settings->bools.menu_xmb_show_music, true, xmb_show_music, false);
|
SETTING_BOOL("xmb_show_music", &settings->bools.menu_xmb_show_music, true, xmb_show_music, false);
|
||||||
|
SETTING_BOOL("menu_show_load_core", &settings->bools.menu_show_load_core, true, menu_show_load_core, false);
|
||||||
SETTING_BOOL("menu_show_online_updater", &settings->bools.menu_show_online_updater, true, menu_show_online_updater, false);
|
SETTING_BOOL("menu_show_online_updater", &settings->bools.menu_show_online_updater, true, menu_show_online_updater, false);
|
||||||
SETTING_BOOL("menu_show_core_updater", &settings->bools.menu_show_core_updater, true, menu_show_core_updater, false);
|
SETTING_BOOL("menu_show_core_updater", &settings->bools.menu_show_core_updater, true, menu_show_core_updater, false);
|
||||||
#ifdef HAVE_FFMPEG
|
#ifdef HAVE_FFMPEG
|
||||||
|
@ -126,6 +126,7 @@ typedef struct settings
|
|||||||
bool menu_linear_filter;
|
bool menu_linear_filter;
|
||||||
bool menu_horizontal_animation;
|
bool menu_horizontal_animation;
|
||||||
bool menu_show_online_updater;
|
bool menu_show_online_updater;
|
||||||
|
bool menu_show_load_core;
|
||||||
bool menu_show_core_updater;
|
bool menu_show_core_updater;
|
||||||
bool menu_materialui_icons_enable;
|
bool menu_materialui_icons_enable;
|
||||||
bool menu_xmb_shadows_enable;
|
bool menu_xmb_shadows_enable;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
MSG_HASH(
|
MSG_HASH(
|
||||||
MSG_COMPILER,
|
MSG_COMPILER,
|
||||||
"编译器"
|
"编译器"
|
||||||
)
|
)
|
||||||
@ -3063,3 +3063,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
"Allow the user to rename entries in collections.")
|
"Allow the user to rename entries in collections.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"Allow to rename entries")
|
"Allow to rename entries")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
MSG_HASH(
|
MSG_HASH(
|
||||||
MSG_COMPILER,
|
MSG_COMPILER,
|
||||||
"編譯器"
|
"編譯器"
|
||||||
)
|
)
|
||||||
@ -3063,3 +3063,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
"Allow the user to rename entries in collections.")
|
"Allow the user to rename entries in collections.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"Allow to rename entries")
|
"Allow to rename entries")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -3057,3 +3057,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
"Allow the user to rename entries in collections.")
|
"Allow the user to rename entries in collections.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"Allow to rename entries")
|
"Allow to rename entries")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -2926,3 +2926,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
"Allow the user to rename entries in collections.")
|
"Allow the user to rename entries in collections.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"Allow to rename entries")
|
"Allow to rename entries")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -3095,3 +3095,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
"Allow the user to rename entries in collections.")
|
"Allow the user to rename entries in collections.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"Allow to rename entries")
|
"Allow to rename entries")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -3149,3 +3149,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
"Allow the user to rename entries in collections.")
|
"Allow the user to rename entries in collections.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"Allow to rename entries")
|
"Allow to rename entries")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#if defined(_MSC_VER) && !defined(_XBOX)
|
#if defined(_MSC_VER) && !defined(_XBOX)
|
||||||
/* https://support.microsoft.com/en-us/kb/980263 */
|
/* https://support.microsoft.com/en-us/kb/980263 */
|
||||||
#pragma execution_character_set("utf-8")
|
#pragma execution_character_set("utf-8")
|
||||||
#endif
|
#endif
|
||||||
@ -3065,3 +3065,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
"Allow the user to rename entries in collections.")
|
"Allow the user to rename entries in collections.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"エントリーの名前変更を許す")
|
"エントリーの名前変更を許す")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
MSG_HASH(
|
MSG_HASH(
|
||||||
MSG_COMPILER,
|
MSG_COMPILER,
|
||||||
"컴파일러"
|
"컴파일러"
|
||||||
)
|
)
|
||||||
@ -3058,3 +3058,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
"Allow the user to rename entries in collections.")
|
"Allow the user to rename entries in collections.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"Allow to rename entries")
|
"Allow to rename entries")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -1305,3 +1305,5 @@ MSG_HASH(MENU_ENUM_LABEL_MATERIALUI_ICONS_ENABLE,
|
|||||||
"materialui_icons_enable")
|
"materialui_icons_enable")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_RENAME_ENTRY,
|
MSG_HASH(MENU_ENUM_LABEL_RENAME_ENTRY,
|
||||||
"rename_entry")
|
"rename_entry")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"menu_show_load_core")
|
||||||
|
@ -2926,3 +2926,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
"Allow the user to rename entries in collections.")
|
"Allow the user to rename entries in collections.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"Allow to rename entries")
|
"Allow to rename entries")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -3988,3 +3988,9 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"Allow to rename entries"
|
"Allow to rename entries"
|
||||||
)
|
)
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core"
|
||||||
|
)
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option."
|
||||||
|
)
|
||||||
|
@ -3033,3 +3033,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
"Allow the user to rename entries in collections.")
|
"Allow the user to rename entries in collections.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"Allow to rename entries")
|
"Allow to rename entries")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#if defined(_MSC_VER) && !defined(_XBOX)
|
#if defined(_MSC_VER) && !defined(_XBOX)
|
||||||
/* https://support.microsoft.com/en-us/kb/980263 */
|
/* https://support.microsoft.com/en-us/kb/980263 */
|
||||||
#pragma execution_character_set("utf-8")
|
#pragma execution_character_set("utf-8")
|
||||||
#endif
|
#endif
|
||||||
@ -3116,3 +3116,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
"Allow the user to rename entries in collections.")
|
"Allow the user to rename entries in collections.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"Allow to rename entries")
|
"Allow to rename entries")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -3151,3 +3151,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_RENAME_ENTRY,
|
|||||||
"Rename the title of the entry.")
|
"Rename the title of the entry.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_RENAME_ENTRY,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_RENAME_ENTRY,
|
||||||
"Rename")
|
"Rename")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
MSG_HASH(
|
MSG_HASH(
|
||||||
MSG_COMPILER,
|
MSG_COMPILER,
|
||||||
"Compiler"
|
"Compiler"
|
||||||
)
|
)
|
||||||
@ -3087,3 +3087,7 @@ MSG_HASH(MENU_ENUM_SUBLABEL_PLAYLIST_ENTRY_RENAME,
|
|||||||
"Allow the user to rename entries in collections.")
|
"Allow the user to rename entries in collections.")
|
||||||
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_PLAYLIST_ENTRY_RENAME,
|
||||||
"Allow to rename entries")
|
"Allow to rename entries")
|
||||||
|
MSG_HASH(MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show Load Core")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
"Show/hide the 'Load Core' option.")
|
||||||
|
@ -291,6 +291,7 @@ default_sublabel_macro(action_bind_sublabel_menu_ribbon_enable,
|
|||||||
default_sublabel_macro(action_bind_sublabel_menu_font, MENU_ENUM_SUBLABEL_XMB_FONT)
|
default_sublabel_macro(action_bind_sublabel_menu_font, MENU_ENUM_SUBLABEL_XMB_FONT)
|
||||||
default_sublabel_macro(action_bind_sublabel_menu_favorites_tab, MENU_ENUM_SUBLABEL_XMB_SHOW_FAVORITES)
|
default_sublabel_macro(action_bind_sublabel_menu_favorites_tab, MENU_ENUM_SUBLABEL_XMB_SHOW_FAVORITES)
|
||||||
default_sublabel_macro(action_bind_sublabel_menu_images_tab, MENU_ENUM_SUBLABEL_XMB_SHOW_IMAGES)
|
default_sublabel_macro(action_bind_sublabel_menu_images_tab, MENU_ENUM_SUBLABEL_XMB_SHOW_IMAGES)
|
||||||
|
default_sublabel_macro(action_bind_sublabel_menu_show_load_core, MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE)
|
||||||
default_sublabel_macro(action_bind_sublabel_menu_show_online_updater, MENU_ENUM_SUBLABEL_MENU_SHOW_ONLINE_UPDATER)
|
default_sublabel_macro(action_bind_sublabel_menu_show_online_updater, MENU_ENUM_SUBLABEL_MENU_SHOW_ONLINE_UPDATER)
|
||||||
default_sublabel_macro(action_bind_sublabel_menu_show_core_updater, MENU_ENUM_SUBLABEL_MENU_SHOW_CORE_UPDATER)
|
default_sublabel_macro(action_bind_sublabel_menu_show_core_updater, MENU_ENUM_SUBLABEL_MENU_SHOW_CORE_UPDATER)
|
||||||
default_sublabel_macro(action_bind_sublabel_menu_music_tab, MENU_ENUM_SUBLABEL_XMB_SHOW_MUSIC)
|
default_sublabel_macro(action_bind_sublabel_menu_music_tab, MENU_ENUM_SUBLABEL_XMB_SHOW_MUSIC)
|
||||||
@ -600,6 +601,9 @@ int menu_cbs_init_bind_sublabel(menu_file_list_cbs_t *cbs,
|
|||||||
case MENU_ENUM_LABEL_XMB_SHOW_MUSIC:
|
case MENU_ENUM_LABEL_XMB_SHOW_MUSIC:
|
||||||
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_menu_music_tab);
|
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_menu_music_tab);
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_MENU_SHOW_LOAD_CORE:
|
||||||
|
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_menu_show_load_core);
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_MENU_SHOW_ONLINE_UPDATER:
|
case MENU_ENUM_LABEL_MENU_SHOW_ONLINE_UPDATER:
|
||||||
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_menu_show_online_updater);
|
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_menu_show_online_updater);
|
||||||
break;
|
break;
|
||||||
|
@ -4321,10 +4321,13 @@ static int xmb_list_push(void *data, void *userdata,
|
|||||||
#ifndef HAVE_DYNAMIC
|
#ifndef HAVE_DYNAMIC
|
||||||
if (frontend_driver_has_fork())
|
if (frontend_driver_has_fork())
|
||||||
#endif
|
#endif
|
||||||
|
{
|
||||||
|
if (settings->bools.menu_show_load_core)
|
||||||
{
|
{
|
||||||
entry.enum_idx = MENU_ENUM_LABEL_CORE_LIST;
|
entry.enum_idx = MENU_ENUM_LABEL_CORE_LIST;
|
||||||
menu_displaylist_ctl(DISPLAYLIST_SETTING_ENUM, &entry);
|
menu_displaylist_ctl(DISPLAYLIST_SETTING_ENUM, &entry);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
entry.enum_idx = MENU_ENUM_LABEL_LOAD_CONTENT_LIST;
|
entry.enum_idx = MENU_ENUM_LABEL_LOAD_CONTENT_LIST;
|
||||||
menu_displaylist_ctl(DISPLAYLIST_SETTING_ENUM, &entry);
|
menu_displaylist_ctl(DISPLAYLIST_SETTING_ENUM, &entry);
|
||||||
|
@ -5278,6 +5278,10 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type, void *data)
|
|||||||
case DISPLAYLIST_MENU_VIEWS_SETTINGS_LIST:
|
case DISPLAYLIST_MENU_VIEWS_SETTINGS_LIST:
|
||||||
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
||||||
|
|
||||||
|
menu_displaylist_parse_settings_enum(menu, info,
|
||||||
|
MENU_ENUM_LABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
PARSE_ONLY_BOOL, false);
|
||||||
|
|
||||||
#if defined(HAVE_NETWORKING) && !defined(HAVE_LAKKA)
|
#if defined(HAVE_NETWORKING) && !defined(HAVE_LAKKA)
|
||||||
menu_displaylist_parse_settings_enum(menu, info,
|
menu_displaylist_parse_settings_enum(menu, info,
|
||||||
MENU_ENUM_LABEL_MENU_SHOW_ONLINE_UPDATER,
|
MENU_ENUM_LABEL_MENU_SHOW_ONLINE_UPDATER,
|
||||||
|
@ -5379,6 +5379,21 @@ static bool setting_append_list(
|
|||||||
general_read_handler);
|
general_read_handler);
|
||||||
menu_settings_list_current_add_range(list, list_info, 0, XMB_THEME_LAST-1, 1, true, true);
|
menu_settings_list_current_add_range(list, list_info, 0, XMB_THEME_LAST-1, 1, true, true);
|
||||||
|
|
||||||
|
CONFIG_BOOL(
|
||||||
|
list, list_info,
|
||||||
|
&settings->bools.menu_show_load_core,
|
||||||
|
MENU_ENUM_LABEL_MENU_SHOW_LOAD_CORE,
|
||||||
|
MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||||||
|
menu_show_load_core,
|
||||||
|
MENU_ENUM_LABEL_VALUE_OFF,
|
||||||
|
MENU_ENUM_LABEL_VALUE_ON,
|
||||||
|
&group_info,
|
||||||
|
&subgroup_info,
|
||||||
|
parent_group,
|
||||||
|
general_write_handler,
|
||||||
|
general_read_handler,
|
||||||
|
SD_FLAG_NONE);
|
||||||
|
|
||||||
CONFIG_BOOL(
|
CONFIG_BOOL(
|
||||||
list, list_info,
|
list, list_info,
|
||||||
&settings->bools.menu_xmb_show_settings,
|
&settings->bools.menu_xmb_show_settings,
|
||||||
|
@ -672,6 +672,7 @@ enum msg_hash_enums
|
|||||||
|
|
||||||
|
|
||||||
/* Menu settings */
|
/* Menu settings */
|
||||||
|
MENU_LABEL(MENU_SHOW_LOAD_CORE),
|
||||||
MENU_LABEL(MENU_SHOW_ONLINE_UPDATER),
|
MENU_LABEL(MENU_SHOW_ONLINE_UPDATER),
|
||||||
MENU_LABEL(MENU_SHOW_CORE_UPDATER),
|
MENU_LABEL(MENU_SHOW_CORE_UPDATER),
|
||||||
MENU_LABEL(RUN_MUSIC),
|
MENU_LABEL(RUN_MUSIC),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user