diff options
| author | Tomer Shalev <shalev.tomer@gmail.com> | 2009-10-05 20:05:55 +0000 |
|---|---|---|
| committer | Tomer Shalev <shalev.tomer@gmail.com> | 2009-10-05 20:05:55 +0000 |
| commit | 6b8a78f7939b2eaccce578b68fd5831fc79f0a71 (patch) | |
| tree | 2d9de23e61d5381bbe0d93d96f0abd9fce4f7e65 /apps/gui/bitmap | |
| parent | 2438d1693b825ea2764b299f2ce7e3b9c50f2644 (diff) | |
| download | rockbox-6b8a78f7939b2eaccce578b68fd5831fc79f0a71.zip rockbox-6b8a78f7939b2eaccce578b68fd5831fc79f0a71.tar.gz rockbox-6b8a78f7939b2eaccce578b68fd5831fc79f0a71.tar.bz2 rockbox-6b8a78f7939b2eaccce578b68fd5831fc79f0a71.tar.xz | |
Fix red - type
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22966 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/bitmap')
| -rw-r--r-- | apps/gui/bitmap/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c index 5c582ae..44587cd 100644 --- a/apps/gui/bitmap/list.c +++ b/apps/gui/bitmap/list.c @@ -450,7 +450,7 @@ unsigned gui_synclist_do_touchscreen(struct gui_synclist * gui_list) return ACTION_NONE; } /* Everything above the items is cancel */ - else if (y < list_text_vp->.y && button == BUTTON_REL) + else if (y < list_text_vp->y && button == BUTTON_REL) return ACTION_STD_CANCEL; } return ACTION_NONE; |