mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Remove extraneous parens
This commit is contained in:
parent
aaf9a1be49
commit
65bb8e4452
5 changed files with 6 additions and 6 deletions
|
@ -459,7 +459,7 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected,
|
|||
selected = get_menu_selection(gui_synclist_get_sel_pos(&lists),menu);
|
||||
temp = menu->submenus[selected];
|
||||
type = (temp->flags&MENU_TYPE_MASK);
|
||||
if ((type == MT_SETTING_W_TEXT || type == MT_SETTING))
|
||||
if (type == MT_SETTING_W_TEXT || type == MT_SETTING)
|
||||
{
|
||||
#ifdef HAVE_QUICKSCREEN
|
||||
MENUITEM_STRINGLIST(quickscreen_able_option,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue