code police and make do_menu() obey the hide_bars param which was never meant to be removed

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24037 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2009-12-17 07:47:08 +00:00
parent 2e865286bc
commit 9ca03c74fb

View file

@ -343,8 +343,8 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected,
const struct menu_item_ex *temp, *menu;
int ret = 0, i;
bool redraw_lists;
FOR_NB_SCREENS(i)
viewportmanager_theme_enable(i, true/*!hide_bars*/, NULL);
FOR_NB_SCREENS(i)
viewportmanager_theme_enable(i, !hide_bars, NULL);
const struct menu_item_ex *menu_stack[MAX_MENUS];
int menu_stack_selected_item[MAX_MENUS];