fix menu screen title bug - patch by Teru

git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_7@28392 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Chicoine 2010-10-30 09:40:15 +00:00
parent 76b2755d80
commit 90fafbea84

View file

@ -584,6 +584,11 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected,
temp->function->param); temp->function->param);
else else
return_value = temp->function->function(); return_value = temp->function->function();
if (!(menu->flags&MENU_EXITAFTERTHISMENU) ||
(temp->flags&MENU_EXITAFTERTHISMENU))
{
init_menu_lists(menu, &lists, selected, true, vps);
}
if (temp->flags&MENU_FUNC_CHECK_RETVAL) if (temp->flags&MENU_FUNC_CHECK_RETVAL)
{ {
if (return_value != 0) if (return_value != 0)