mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
Build fix and another sublabel
This commit is contained in:
parent
5d75a61bd6
commit
896be7e1d9
@ -2433,3 +2433,7 @@ MSG_HASH(
|
||||
MENU_ENUM_SUBLABEL_CONTENT_COLLECTION_LIST,
|
||||
"Content which has been scanned will appear here."
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_SUBLABEL_VIDEO_SCALE_INTEGER,
|
||||
"Only scales video in integer steps. The base size depends on system-reported geometry and aspect ratio. If 'Force Aspect' is not set, X/Y will be integer scaled independently."
|
||||
)
|
||||
|
@ -141,6 +141,7 @@ default_sublabel_macro(action_bind_sublabel_video_message_pos_y, MENU_
|
||||
default_sublabel_macro(action_bind_sublabel_video_font_size, MENU_ENUM_SUBLABEL_VIDEO_FONT_SIZE)
|
||||
default_sublabel_macro(action_bind_sublabel_input_overlay_hide_in_menu, MENU_ENUM_SUBLABEL_INPUT_OVERLAY_HIDE_IN_MENU)
|
||||
default_sublabel_macro(action_bind_sublabel_content_collection_list, MENU_ENUM_SUBLABEL_CONTENT_COLLECTION_LIST)
|
||||
default_sublabel_macro(action_bind_sublabel_video_scale_integer, MENU_ENUM_SUBLABEL_VIDEO_SCALE_INTEGER)
|
||||
|
||||
static int action_bind_sublabel_cheevos_entry(
|
||||
file_list_t *list,
|
||||
@ -202,6 +203,9 @@ int menu_cbs_init_bind_sublabel(menu_file_list_cbs_t *cbs,
|
||||
{
|
||||
switch (cbs->enum_idx)
|
||||
{
|
||||
case MENU_ENUM_LABEL_VIDEO_SCALE_INTEGER:
|
||||
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_video_scale_integer);
|
||||
break;
|
||||
case MENU_ENUM_LABEL_CONTENT_COLLECTION_LIST:
|
||||
BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_content_collection_list);
|
||||
break;
|
||||
|
@ -2619,9 +2619,8 @@ static int menu_displaylist_parse_load_content_settings(
|
||||
menu_displaylist_info_t *info)
|
||||
{
|
||||
menu_handle_t *menu = NULL;
|
||||
#ifdef HAVE_CHEEVOS
|
||||
settings_t *settings = config_get_ptr();
|
||||
#endif
|
||||
|
||||
if (!menu_driver_ctl(RARCH_MENU_CTL_DRIVER_DATA_GET, &menu))
|
||||
return -1;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user