summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2022-04-10 23:59:33 -0400
committerWilliam Wilgus <wilgus.william@gmail.com>2022-04-10 23:59:33 -0400
commitb9ab75732ad53659b7aa9b6e7bb7e37769cb708f (patch)
treed279c79fe8dd15a55cae4de1157b959a7b3dd6bb
parentddcab156f7b7675560d4e5bf4fdfab3ca59a6173 (diff)
downloadrockbox-b9ab75732ad53659b7aa9b6e7bb7e37769cb708f.tar.gz
rockbox-b9ab75732ad53659b7aa9b6e7bb7e37769cb708f.zip
bitmap/list.c fix red
--typo Change-Id: Iaa632e215d7d1e3758f62fedd72565fa633d925e
-rw-r--r--apps/gui/bitmap/list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c
index e11ca5386e..53874a8dfa 100644
--- a/apps/gui/bitmap/list.c
+++ b/apps/gui/bitmap/list.c
@@ -758,7 +758,7 @@ static int get_click_location(struct gui_synclist *list, int x, int y)
if (viewport_point_within_vp(title, x, y))
retval = TITLE_TEXT;
/* check the icon too */
- if (list->title_icon != Icon_NOICON && (list->show_icons)
+ if (list->title_icon != Icon_NOICON && list->show_icons)
{
int width = list_icon_width(screen);
struct viewport vp = *title;