1
0
Fork 0
forked from len0rd/rockbox

Yes/No/Ask instead of On/Off/Ask

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2493 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Uwe Freese 2002-10-03 15:02:14 +00:00
parent f270f6f491
commit ecfc88bb79

View file

@ -137,9 +137,9 @@ static bool sort_case(void)
static bool resume(void)
{
char* names[] = { str(LANG_OFF),
char* names[] = { str(LANG_SET_BOOL_NO),
str(LANG_RESUME_SETTING_ASK),
str(LANG_ON) };
str(LANG_SET_BOOL_YES) };
return set_option( str(LANG_RESUME), &global_settings.resume,
names, 3, NULL );
}