Add sublabel
This commit is contained in:
parent
1986a80b66
commit
4ee1889637
|
@ -2926,3 +2926,5 @@ MSG_HASH(
|
||||||
)
|
)
|
||||||
MSG_HASH(MENU_ENUM_SUBLABEL_CONTENT_SETTINGS,
|
MSG_HASH(MENU_ENUM_SUBLABEL_CONTENT_SETTINGS,
|
||||||
"Quickly access all relevant in-game settings.")
|
"Quickly access all relevant in-game settings.")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_CORE_INFORMATION,
|
||||||
|
"View information pertaining to the application/core.")
|
||||||
|
|
|
@ -306,6 +306,7 @@ default_sublabel_macro(action_bind_sublabel_cheat_num_passes,
|
||||||
default_sublabel_macro(action_bind_sublabel_cheat_file_load, MENU_ENUM_SUBLABEL_CHEAT_FILE_LOAD)
|
default_sublabel_macro(action_bind_sublabel_cheat_file_load, MENU_ENUM_SUBLABEL_CHEAT_FILE_LOAD)
|
||||||
default_sublabel_macro(action_bind_sublabel_cheat_file_save_as, MENU_ENUM_SUBLABEL_CHEAT_FILE_SAVE_AS)
|
default_sublabel_macro(action_bind_sublabel_cheat_file_save_as, MENU_ENUM_SUBLABEL_CHEAT_FILE_SAVE_AS)
|
||||||
default_sublabel_macro(action_bind_sublabel_quick_menu, MENU_ENUM_SUBLABEL_CONTENT_SETTINGS)
|
default_sublabel_macro(action_bind_sublabel_quick_menu, MENU_ENUM_SUBLABEL_CONTENT_SETTINGS)
|
||||||
|
default_sublabel_macro(action_bind_sublabel_core_information, MENU_ENUM_SUBLABEL_CORE_INFORMATION)
|
||||||
|
|
||||||
static int action_bind_sublabel_cheevos_entry(
|
static int action_bind_sublabel_cheevos_entry(
|
||||||
file_list_t *list,
|
file_list_t *list,
|
||||||
|
@ -367,6 +368,9 @@ int menu_cbs_init_bind_sublabel(menu_file_list_cbs_t *cbs,
|
||||||
{
|
{
|
||||||
switch (cbs->enum_idx)
|
switch (cbs->enum_idx)
|
||||||
{
|
{
|
||||||
|
case MENU_ENUM_LABEL_CORE_INFORMATION:
|
||||||
|
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_core_information);
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_CONTENT_SETTINGS:
|
case MENU_ENUM_LABEL_CONTENT_SETTINGS:
|
||||||
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_quick_menu);
|
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_quick_menu);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue