mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Add more sublabels
This commit is contained in:
parent
f3ad815dd9
commit
720cd4ff7e
@ -3023,6 +3023,10 @@ const char *msg_hash_to_str_us(enum msg_hash_enums msg)
|
|||||||
|
|
||||||
switch (msg)
|
switch (msg)
|
||||||
{
|
{
|
||||||
|
case MENU_ENUM_SUBLABEL_VIDEO_REFRESH_RATE_AUTO:
|
||||||
|
return "The accurate estimated refresh rate of the monitor in Hz.";
|
||||||
|
case MENU_ENUM_SUBLABEL_VIDEO_MONITOR_INDEX:
|
||||||
|
return "Selects which display monitor to use.";
|
||||||
case MENU_ENUM_SUBLABEL_LOG_VERBOSITY:
|
case MENU_ENUM_SUBLABEL_LOG_VERBOSITY:
|
||||||
return "Enable or disable logging to the terminal.";
|
return "Enable or disable logging to the terminal.";
|
||||||
case MENU_ENUM_SUBLABEL_SHOW_HIDDEN_FILES:
|
case MENU_ENUM_SUBLABEL_SHOW_HIDDEN_FILES:
|
||||||
|
@ -200,6 +200,26 @@ static int action_bind_sublabel_log_verbosity(
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int action_bind_sublabel_video_monitor_index(
|
||||||
|
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_VIDEO_MONITOR_INDEX), len);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int action_bind_sublabel_video_refresh_rate_auto(
|
||||||
|
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_VIDEO_REFRESH_RATE_AUTO), len);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int menu_cbs_init_bind_sublabel(menu_file_list_cbs_t *cbs,
|
int menu_cbs_init_bind_sublabel(menu_file_list_cbs_t *cbs,
|
||||||
const char *path, const char *label, unsigned type, size_t idx)
|
const char *path, const char *label, unsigned type, size_t idx)
|
||||||
{
|
{
|
||||||
@ -212,6 +232,12 @@ int menu_cbs_init_bind_sublabel(menu_file_list_cbs_t *cbs,
|
|||||||
{
|
{
|
||||||
switch (cbs->enum_idx)
|
switch (cbs->enum_idx)
|
||||||
{
|
{
|
||||||
|
case MENU_ENUM_LABEL_VIDEO_REFRESH_RATE_AUTO:
|
||||||
|
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_video_refresh_rate_auto);
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VIDEO_MONITOR_INDEX:
|
||||||
|
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_video_monitor_index);
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_LOG_VERBOSITY:
|
case MENU_ENUM_LABEL_LOG_VERBOSITY:
|
||||||
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_log_verbosity);
|
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_log_verbosity);
|
||||||
break;
|
break;
|
||||||
|
@ -1865,6 +1865,8 @@ enum msg_hash_enums
|
|||||||
MENU_ENUM_LABEL_CB_CORE_UPDATER_DOWNLOAD,
|
MENU_ENUM_LABEL_CB_CORE_UPDATER_DOWNLOAD,
|
||||||
MENU_ENUM_LABEL_CB_CORE_THUMBNAILS_DOWNLOAD,
|
MENU_ENUM_LABEL_CB_CORE_THUMBNAILS_DOWNLOAD,
|
||||||
|
|
||||||
|
MENU_ENUM_SUBLABEL_VIDEO_REFRESH_RATE_AUTO,
|
||||||
|
MENU_ENUM_SUBLABEL_VIDEO_MONITOR_INDEX,
|
||||||
MENU_ENUM_SUBLABEL_LOG_VERBOSITY,
|
MENU_ENUM_SUBLABEL_LOG_VERBOSITY,
|
||||||
MENU_ENUM_SUBLABEL_SHOW_HIDDEN_FILES,
|
MENU_ENUM_SUBLABEL_SHOW_HIDDEN_FILES,
|
||||||
MENU_ENUM_SUBLABEL_INPUT_MENU_ENUM_TOGGLE_GAMEPAD_COMBO,
|
MENU_ENUM_SUBLABEL_INPUT_MENU_ENUM_TOGGLE_GAMEPAD_COMBO,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user