(menu_setting.c) Cleanup
This commit is contained in:
parent
b0ea1daf71
commit
0a056da584
|
@ -20,8 +20,10 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#define MENU_LABEL_AUDIO_DEVICE 0x2574eac6U
|
#define MENU_LABEL_AUDIO_DEVICE 0x2574eac6U
|
||||||
|
|
||||||
|
#define MENU_LABEL_REWIND_ENABLE 0x9761e074U
|
||||||
#define MENU_LABEL_ENABLE_HOTKEY 0xc04037bfU
|
#define MENU_LABEL_ENABLE_HOTKEY 0xc04037bfU
|
||||||
#define MENU_LABEL_DISK_EJECT_TOGGLE 0x49633fbbU
|
#define MENU_LABEL_DISK_EJECT_TOGGLE 0x49633fbbU
|
||||||
#define MENU_LABEL_DISK_NEXT 0xeeaf6c6eU
|
#define MENU_LABEL_DISK_NEXT 0xeeaf6c6eU
|
||||||
|
|
|
@ -2455,6 +2455,13 @@ static int setting_get_description_compare_label(uint32_t label_hash,
|
||||||
"the keyboard, where it is not desirable that \n"
|
"the keyboard, where it is not desirable that \n"
|
||||||
"hotkeys get in the way.");
|
"hotkeys get in the way.");
|
||||||
break;
|
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:
|
default:
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
@ -2837,14 +2844,6 @@ int setting_get_description(const char *label, char *s,
|
||||||
"at a time, increasing the rewinding \n"
|
"at a time, increasing the rewinding \n"
|
||||||
"speed.");
|
"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"))
|
else if (!strcmp(label, "input_autodetect_enable"))
|
||||||
{
|
{
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
|
|
Loading…
Reference in New Issue