summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-04-16 12:26:49 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-04-16 12:26:49 +0000
commit4a16739bddbff2ecd629c8a131ddce9e96c93c3a (patch)
treeedd14c0a125a95506d26e742c127ce53bce03fd2 /apps/gui
parent3124134a086e775ad61e97bd0c82758d81faec66 (diff)
downloadrockbox-4a16739bddbff2ecd629c8a131ddce9e96c93c3a.tar.gz
rockbox-4a16739bddbff2ecd629c8a131ddce9e96c93c3a.zip
Some gremlins got into my computer again and changed all my code!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13181 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/icon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/gui/icon.c b/apps/gui/icon.c
index b283ec2c80..647c15434e 100644
--- a/apps/gui/icon.c
+++ b/apps/gui/icon.c
@@ -134,8 +134,8 @@ void screen_put_iconxy(struct screen * display,
134 else if (icon >= Icon_Last_Themeable) 134 else if (icon >= Icon_Last_Themeable)
135 { 135 {
136 icon -= Icon_Last_Themeable; 136 icon -= Icon_Last_Themeable;
137 if (!viewer_icons_loaded[screen] || 137 if (!viewer_icons_loaded[screen]/* ||
138 (icon*ICON_HEIGHT(screen) > viewer_iconset[screen].height)) 138 (icon*ICON_HEIGHT(screen) > viewer_iconset[screen].height)*/)
139 { 139 {
140 screen_clear_area(display, xpos, ypos, 140 screen_clear_area(display, xpos, ypos,
141 ICON_WIDTH(screen), ICON_HEIGHT(screen)); 141 ICON_WIDTH(screen), ICON_HEIGHT(screen));
@@ -270,7 +270,7 @@ void icons_init(void)
270 load_icons(path, Iconset_Remotescreen_viewers); 270 load_icons(path, Iconset_Remotescreen_viewers);
271 } 271 }
272 else 272 else
273 load_icons(DEFAULT_REMOTE_VIEWER_BMP, Iconset_Mainscreen_viewers); 273 load_icons(DEFAULT_REMOTE_VIEWER_BMP, Iconset_Remotescreen_viewers);
274#endif 274#endif
275} 275}
276 276