Add sublabel for Recording
This commit is contained in:
parent
92fc74b0ff
commit
c05aba32a9
|
@ -1612,6 +1612,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_CHEEVOS_HARDCORE_MODE_ENABLE,
|
||||||
"Enable or disable savestates, cheats, rewind, fast-forward, pause, and slow-motion for all games.")
|
"Enable or disable savestates, cheats, rewind, fast-forward, pause, and slow-motion for all games.")
|
||||||
MSG_HASH(MENU_ENUM_SUBLABEL_CORE_SETTINGS,
|
MSG_HASH(MENU_ENUM_SUBLABEL_CORE_SETTINGS,
|
||||||
"Change settings for the core.")
|
"Change settings for the core.")
|
||||||
|
MSG_HASH(MENU_ENUM_SUBLABEL_RECORDING_SETTINGS,
|
||||||
|
"Change settings for the recording.")
|
||||||
MSG_HASH(MENU_ENUM_SUBLABEL_ADD_CONTENT_LIST,
|
MSG_HASH(MENU_ENUM_SUBLABEL_ADD_CONTENT_LIST,
|
||||||
"Scan contents and add to the database.")
|
"Scan contents and add to the database.")
|
||||||
MSG_HASH(MENU_ENUM_SUBLABEL_AUDIO_SETTINGS,
|
MSG_HASH(MENU_ENUM_SUBLABEL_AUDIO_SETTINGS,
|
||||||
|
|
|
@ -40,6 +40,16 @@ static int action_bind_sublabel_generic(
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int action_bind_sublabel_recording_settings_list(
|
||||||
|
file_list_t *list,
|
||||||
|
unsigned type, unsigned i,
|
||||||
|
const char *label, const char *path,
|
||||||
|
char *s, size_t len)
|
||||||
|
{
|
||||||
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_SUBLABEL_RECORDING_SETTINGS), len);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int action_bind_sublabel_core_settings_list(
|
static int action_bind_sublabel_core_settings_list(
|
||||||
file_list_t *list,
|
file_list_t *list,
|
||||||
unsigned type, unsigned i,
|
unsigned type, unsigned i,
|
||||||
|
@ -511,6 +521,9 @@ int menu_cbs_init_bind_sublabel(menu_file_list_cbs_t *cbs,
|
||||||
case MENU_ENUM_LABEL_AUDIO_SETTINGS:
|
case MENU_ENUM_LABEL_AUDIO_SETTINGS:
|
||||||
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_audio_settings_list);
|
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_audio_settings_list);
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_RECORDING_SETTINGS:
|
||||||
|
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_recording_settings_list);
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_CORE_SETTINGS:
|
case MENU_ENUM_LABEL_CORE_SETTINGS:
|
||||||
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_core_settings_list);
|
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_core_settings_list);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -1966,6 +1966,7 @@ enum msg_hash_enums
|
||||||
MENU_ENUM_SUBLABEL_MENU_SETTINGS,
|
MENU_ENUM_SUBLABEL_MENU_SETTINGS,
|
||||||
MENU_ENUM_SUBLABEL_NETPLAY,
|
MENU_ENUM_SUBLABEL_NETPLAY,
|
||||||
MENU_ENUM_SUBLABEL_ONLINE_UPDATER,
|
MENU_ENUM_SUBLABEL_ONLINE_UPDATER,
|
||||||
|
MENU_ENUM_SUBLABEL_RECORDING_SETTINGS,
|
||||||
MENU_ENUM_SUBLABEL_SAMBA_ENABLE,
|
MENU_ENUM_SUBLABEL_SAMBA_ENABLE,
|
||||||
MENU_ENUM_SUBLABEL_SERVICES_SETTINGS,
|
MENU_ENUM_SUBLABEL_SERVICES_SETTINGS,
|
||||||
MENU_ENUM_SUBLABEL_SHOW_HIDDEN_FILES,
|
MENU_ENUM_SUBLABEL_SHOW_HIDDEN_FILES,
|
||||||
|
|
Loading…
Reference in New Issue