diff --git a/intl/msg_hash_us.h b/intl/msg_hash_us.h index cb1a28daab..ef7f18f9d8 100644 --- a/intl/msg_hash_us.h +++ b/intl/msg_hash_us.h @@ -2407,3 +2407,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_NETPLAY_NICKNAME, "Input your user name here. This will be used for netplay sessions among other things.") MSG_HASH(MENU_ENUM_SUBLABEL_VIDEO_POST_FILTER_RECORD, "Capture the image after filters (but not shaders) are applied. Your video will look as fancy as what you see on your screen.") +MSG_HASH(MENU_ENUM_SUBLABEL_CORE_LIST, + "Select which core program we wish to use.") +MSG_HASH(MENU_ENUM_SUBLABEL_LOAD_CONTENT_LIST, + "Select the content we want to start.") + diff --git a/menu/cbs/menu_cbs_sublabel.c b/menu/cbs/menu_cbs_sublabel.c index 86cb6008f0..0606971ea4 100644 --- a/menu/cbs/menu_cbs_sublabel.c +++ b/menu/cbs/menu_cbs_sublabel.c @@ -129,6 +129,8 @@ default_sublabel_macro(action_bind_sublabel_netplay_nickname, MENU_ default_sublabel_macro(action_bind_sublabel_cheevos_username, MENU_ENUM_SUBLABEL_CHEEVOS_USERNAME) default_sublabel_macro(action_bind_sublabel_cheevos_password, MENU_ENUM_SUBLABEL_CHEEVOS_PASSWORD) default_sublabel_macro(action_bind_sublabel_video_post_filter_record, MENU_ENUM_SUBLABEL_VIDEO_POST_FILTER_RECORD) +default_sublabel_macro(action_bind_sublabel_core_list, MENU_ENUM_SUBLABEL_CORE_LIST) +default_sublabel_macro(action_bind_sublabel_content_list, MENU_ENUM_SUBLABEL_LOAD_CONTENT_LIST) /* MENU_ENUM_LABEL_CONNECT_NETPLAY_ROOM*/ @@ -192,6 +194,12 @@ int menu_cbs_init_bind_sublabel(menu_file_list_cbs_t *cbs, { switch (cbs->enum_idx) { + case MENU_ENUM_LABEL_LOAD_CONTENT_LIST: + BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_content_list); + break; + case MENU_ENUM_LABEL_CORE_LIST: + BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_core_list); + break; case MENU_ENUM_LABEL_VIDEO_POST_FILTER_RECORD: BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_video_post_filter_record); break;