mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
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:
parent
76b2755d80
commit
90fafbea84
1 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue