(menu_setting.c) Cleanup

This commit is contained in:
twinaphex 2015-06-05 14:35:20 +02:00
parent b0ea1daf71
commit 0a056da584
2 changed files with 9 additions and 8 deletions

View File

@ -20,8 +20,10 @@
extern "C" {
#endif
#define MENU_LABEL_AUDIO_DEVICE 0x2574eac6U
#define MENU_LABEL_REWIND_ENABLE 0x9761e074U
#define MENU_LABEL_ENABLE_HOTKEY 0xc04037bfU
#define MENU_LABEL_DISK_EJECT_TOGGLE 0x49633fbbU
#define MENU_LABEL_DISK_NEXT 0xeeaf6c6eU

View File

@ -2455,6 +2455,13 @@ static int setting_get_description_compare_label(uint32_t label_hash,
"the keyboard, where it is not desirable that \n"
"hotkeys get in the way.");
break;
case MENU_LABEL_REWIND_ENABLE:
snprintf(s, len,
" -- Enable rewinding.\n"
" \n"
"This will take a performance hit, \n"
"so it is disabled by default.");
break;
default:
return -1;
}
@ -2837,14 +2844,6 @@ int setting_get_description(const char *label, char *s,
"at a time, increasing the rewinding \n"
"speed.");
}
else if (!strcmp(label, "rewind_enable"))
{
snprintf(s, len,
" -- Enable rewinding.\n"
" \n"
"This will take a performance hit, \n"
"so it is disabled by default.");
}
else if (!strcmp(label, "input_autodetect_enable"))
{
snprintf(s, len,