(Menu) Menu hashes update
This commit is contained in:
parent
8e2e08d47c
commit
b19ddd1685
|
@ -359,6 +359,14 @@ static const char *menu_hash_to_str_english(uint32_t hash)
|
|||
return "video_message_pos_y";
|
||||
case MENU_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
|
||||
return "OSD Message Y Position";
|
||||
case MENU_LABEL_VIDEO_SOFT_FILTER:
|
||||
return "soft_filter";
|
||||
case MENU_LABEL_VALUE_VIDEO_SOFT_FILTER:
|
||||
return "Soft Filter Enable";
|
||||
case MENU_LABEL_VIDEO_FILTER_FLICKER:
|
||||
return "video_filter_flicker";
|
||||
case MENU_LABEL_VALUE_VIDEO_FILTER_FLICKER:
|
||||
return "Flicker filter";
|
||||
case MENU_VALUE_DIRECTORY_CONTENT:
|
||||
return "<Content dir>";
|
||||
case MENU_VALUE_UNKNOWN:
|
||||
|
|
|
@ -37,6 +37,12 @@ extern "C" {
|
|||
#define MENU_LABEL_VIDEO_MESSAGE_POS_Y 0xa133c369U
|
||||
#define MENU_LABEL_VALUE_VIDEO_MESSAGE_POS_Y 0x4f2559beU
|
||||
|
||||
#define MENU_LABEL_VIDEO_FILTER_FLICKER 0x2e21eba0U
|
||||
#define MENU_LABEL_VALUE_VIDEO_FILTER_FLICKER 0x87c7226bU
|
||||
|
||||
#define MENU_LABEL_VIDEO_SOFT_FILTER 0x92819a46U
|
||||
#define MENU_LABEL_VALUE_VIDEO_SOFT_FILTER 0xd035df8eU
|
||||
|
||||
#define MENU_LABEL_CORE_ENABLE 0x2f37fe48U
|
||||
#define MENU_LABEL_VALUE_CORE_ENABLE 0x751e2065U
|
||||
|
||||
|
|
|
@ -4902,8 +4902,8 @@ static bool setting_append_list_video_options(
|
|||
#if defined(_XBOX1) || defined(HW_RVL)
|
||||
CONFIG_BOOL(
|
||||
global->console.softfilter_enable,
|
||||
"soft_filter",
|
||||
"Soft Filter Enable",
|
||||
menu_hash_to_str(MENU_LABEL_VIDEO_SOFT_FILTER),
|
||||
menu_hash_to_str(MENU_LABEL_VALUE_VIDEO_SOFT_FILTER),
|
||||
false,
|
||||
menu_hash_to_str(MENU_VALUE_OFF),
|
||||
menu_hash_to_str(MENU_VALUE_ON),
|
||||
|
@ -4921,8 +4921,8 @@ static bool setting_append_list_video_options(
|
|||
#ifdef _XBOX1
|
||||
CONFIG_UINT(
|
||||
settings->video.swap_interval,
|
||||
"video_filter_flicker",
|
||||
"Flicker filter",
|
||||
menu_hash_to_str(MENU_LABEL_VIDEO_FILTER_FLICKER),
|
||||
menu_hash_to_str(MENU_LABEL_VALUE_VIDEO_FILTER_FLICKER),
|
||||
0,
|
||||
group_info.name,
|
||||
subgroup_info.name,
|
||||
|
|
Loading…
Reference in New Issue