1
0
Fork 0
forked from len0rd/rockbox

'no voice' is -1 not 0 and menu_items does have a pointer

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10527 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Marcoen Hirschberg 2006-08-11 12:48:36 +00:00
parent ed70da26bd
commit d24ed9987b
5 changed files with 205 additions and 205 deletions

View file

@ -2097,22 +2097,22 @@ int show_menu(void) /* return 1 to quit */
{ "Return", NULL },
};
static const struct opt_items slideshow[2] = {
{"Disable",0},
{"Enable",0},
{ "Disable", -1 },
{ "Enable", -1 },
};
static const struct opt_items timeout[12] = {
{ "1 second", 0 },
{ "2 seconds", 0 },
{ "3 seconds", 0 },
{ "4 seconds", 0 },
{ "5 seconds", 0 },
{ "6 seconds", 0 },
{ "7 seconds", 0 },
{ "8 seconds", 0 },
{ "9 seconds", 0 },
{ "10 seconds", 0 },
{ "15 seconds", 0 },
{ "20 seconds", 0 },
{ "1 second", -1 },
{ "2 seconds", -1 },
{ "3 seconds", -1 },
{ "4 seconds", -1 },
{ "5 seconds", -1 },
{ "6 seconds", -1 },
{ "7 seconds", -1 },
{ "8 seconds", -1 },
{ "9 seconds", -1 },
{ "10 seconds", -1 },
{ "15 seconds", -1 },
{ "20 seconds", -1 },
};
m = rb->menu_init(items, sizeof(items) / sizeof(*items),
NULL, NULL, NULL, NULL);