diff options
| author | Teruaki Kawashima <teru@rockbox.org> | 2010-10-16 11:05:09 +0000 |
|---|---|---|
| committer | Teruaki Kawashima <teru@rockbox.org> | 2010-10-16 11:05:09 +0000 |
| commit | 44780475bc53ad6a53c4d7216213c200c4d9063e (patch) | |
| tree | d02403e167097f25c290b1840b967fedc5ffadf4 /apps | |
| parent | c1bfe4eb620afb2ac0d9a8baef706f8fc1a4b00f (diff) | |
| download | rockbox-44780475bc53ad6a53c4d7216213c200c4d9063e.zip rockbox-44780475bc53ad6a53c4d7216213c200c4d9063e.tar.gz rockbox-44780475bc53ad6a53c4d7216213c200c4d9063e.tar.bz2 rockbox-44780475bc53ad6a53c4d7216213c200c4d9063e.tar.xz | |
Fix FS#10981: Viewers icons applied incorrectly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28286 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/gui/icon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/icon.c b/apps/gui/icon.c index 73c0fb5..299af5d 100644 --- a/apps/gui/icon.c +++ b/apps/gui/icon.c @@ -143,7 +143,7 @@ void screen_put_iconxy(struct screen * display, icon -= Icon_Last_Themeable; if (!viewer_icons_loaded[screen] || (global_status.viewer_icon_count * height > iconset->height) || - (icon * height > iconset->height)) + (icon * height + height > iconset->height)) { screen_put_iconxy(display, xpos, ypos, Icon_Questionmark); return; |