summaryrefslogtreecommitdiff
path: root/apps/menu.c
diff options
context:
space:
mode:
authorRafaël Carré <funman@videolan.org>2012-05-06 23:10:19 -0400
committerRafaël Carré <funman@videolan.org>2012-05-06 23:13:34 -0400
commit65bb8e4452575164a36fbd503bb3d23f7061b9d1 (patch)
tree8f7769fa6cf19cdf568c808e01844482cb9c666c /apps/menu.c
parentaaf9a1be494812dd6aedde12ea7b3c2d3305d6b7 (diff)
downloadrockbox-65bb8e4452575164a36fbd503bb3d23f7061b9d1.tar.gz
rockbox-65bb8e4452575164a36fbd503bb3d23f7061b9d1.zip
Remove extraneous parens
Diffstat (limited to 'apps/menu.c')
-rw-r--r--apps/menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menu.c b/apps/menu.c
index b813f03dce..7ab7b56152 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -459,7 +459,7 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected,
459 selected = get_menu_selection(gui_synclist_get_sel_pos(&lists),menu); 459 selected = get_menu_selection(gui_synclist_get_sel_pos(&lists),menu);
460 temp = menu->submenus[selected]; 460 temp = menu->submenus[selected];
461 type = (temp->flags&MENU_TYPE_MASK); 461 type = (temp->flags&MENU_TYPE_MASK);
462 if ((type == MT_SETTING_W_TEXT || type == MT_SETTING)) 462 if (type == MT_SETTING_W_TEXT || type == MT_SETTING)
463 { 463 {
464#ifdef HAVE_QUICKSCREEN 464#ifdef HAVE_QUICKSCREEN
465 MENUITEM_STRINGLIST(quickscreen_able_option, 465 MENUITEM_STRINGLIST(quickscreen_able_option,