(RMenu) Fix labels
This commit is contained in:
parent
374a8c065d
commit
a0b07c8d7d
|
@ -975,7 +975,6 @@ static int set_setting_action(uint8_t menu_type, unsigned switchvalue, uint64_t
|
||||||
driver.video_poke->set_aspect_ratio(driver.video_data, g_settings.video.aspect_ratio_idx);
|
driver.video_poke->set_aspect_ratio(driver.video_data, g_settings.video.aspect_ratio_idx);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
#ifndef HAVE_SHADER_MANAGER
|
|
||||||
case SETTING_HW_TEXTURE_FILTER:
|
case SETTING_HW_TEXTURE_FILTER:
|
||||||
if ((input & (1ULL << DEVICE_NAV_LEFT)) || (input & (1ULL << DEVICE_NAV_RIGHT)) || (input & (1ULL << DEVICE_NAV_B)))
|
if ((input & (1ULL << DEVICE_NAV_LEFT)) || (input & (1ULL << DEVICE_NAV_RIGHT)) || (input & (1ULL << DEVICE_NAV_B)))
|
||||||
{
|
{
|
||||||
|
@ -992,7 +991,6 @@ static int set_setting_action(uint8_t menu_type, unsigned switchvalue, uint64_t
|
||||||
driver.video_poke->set_filtering(driver.video_data, 1, g_settings.video.smooth);
|
driver.video_poke->set_filtering(driver.video_data, 1, g_settings.video.smooth);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
#endif
|
|
||||||
#ifdef _XBOX1
|
#ifdef _XBOX1
|
||||||
case SETTING_FLICKER_FILTER:
|
case SETTING_FLICKER_FILTER:
|
||||||
if (input & (1ULL << DEVICE_NAV_LEFT))
|
if (input & (1ULL << DEVICE_NAV_LEFT))
|
||||||
|
@ -1871,7 +1869,6 @@ static int select_setting(void *data, uint64_t input)
|
||||||
snprintf(setting_text, sizeof(setting_text), "%f", g_settings.video.font_size);
|
snprintf(setting_text, sizeof(setting_text), "%f", g_settings.video.font_size);
|
||||||
strlcpy(comment, "INFO - Increase or decrease the [Font Size].", sizeof(comment));
|
strlcpy(comment, "INFO - Increase or decrease the [Font Size].", sizeof(comment));
|
||||||
break;
|
break;
|
||||||
#ifndef HAVE_SHADER_MANAGER
|
|
||||||
case SETTING_HW_TEXTURE_FILTER:
|
case SETTING_HW_TEXTURE_FILTER:
|
||||||
strlcpy(text, "Default Filter", sizeof(text));
|
strlcpy(text, "Default Filter", sizeof(text));
|
||||||
if (g_settings.video.smooth)
|
if (g_settings.video.smooth)
|
||||||
|
@ -1887,7 +1884,6 @@ static int select_setting(void *data, uint64_t input)
|
||||||
sizeof(comment));
|
sizeof(comment));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
#endif
|
|
||||||
#ifdef _XBOX1
|
#ifdef _XBOX1
|
||||||
case SETTING_FLICKER_FILTER:
|
case SETTING_FLICKER_FILTER:
|
||||||
strlcpy(text, "Flicker Filter", sizeof(text));
|
strlcpy(text, "Flicker Filter", sizeof(text));
|
||||||
|
@ -2179,6 +2175,11 @@ static int select_setting(void *data, uint64_t input)
|
||||||
strlcpy(setting_text, "...", sizeof(setting_text));
|
strlcpy(setting_text, "...", sizeof(setting_text));
|
||||||
strlcpy(comment, "Set and manage video options.", sizeof(comment));
|
strlcpy(comment, "Set and manage video options.", sizeof(comment));
|
||||||
break;
|
break;
|
||||||
|
case INGAME_MENU_INPUT_OPTIONS_MODE:
|
||||||
|
strlcpy(text, "Input Options", sizeof(text));
|
||||||
|
strlcpy(setting_text, "...", sizeof(setting_text));
|
||||||
|
strlcpy(comment, "Set and manage input options.", sizeof(comment));
|
||||||
|
break;
|
||||||
case INGAME_MENU_FRAME_ADVANCE:
|
case INGAME_MENU_FRAME_ADVANCE:
|
||||||
strlcpy(text, "Frame Advance", sizeof(text));
|
strlcpy(text, "Frame Advance", sizeof(text));
|
||||||
strlcpy(setting_text, "", sizeof(setting_text));
|
strlcpy(setting_text, "", sizeof(setting_text));
|
||||||
|
|
Loading…
Reference in New Issue