diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-04-16 12:26:49 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-04-16 12:26:49 +0000 |
| commit | 4a16739bddbff2ecd629c8a131ddce9e96c93c3a (patch) | |
| tree | edd14c0a125a95506d26e742c127ce53bce03fd2 /apps/gui | |
| parent | 3124134a086e775ad61e97bd0c82758d81faec66 (diff) | |
| download | rockbox-4a16739bddbff2ecd629c8a131ddce9e96c93c3a.zip rockbox-4a16739bddbff2ecd629c8a131ddce9e96c93c3a.tar.gz rockbox-4a16739bddbff2ecd629c8a131ddce9e96c93c3a.tar.bz2 rockbox-4a16739bddbff2ecd629c8a131ddce9e96c93c3a.tar.xz | |
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.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/gui/icon.c b/apps/gui/icon.c index b283ec2..647c154 100644 --- a/apps/gui/icon.c +++ b/apps/gui/icon.c @@ -134,8 +134,8 @@ void screen_put_iconxy(struct screen * display, else if (icon >= Icon_Last_Themeable) { icon -= Icon_Last_Themeable; - if (!viewer_icons_loaded[screen] || - (icon*ICON_HEIGHT(screen) > viewer_iconset[screen].height)) + if (!viewer_icons_loaded[screen]/* || + (icon*ICON_HEIGHT(screen) > viewer_iconset[screen].height)*/) { screen_clear_area(display, xpos, ypos, ICON_WIDTH(screen), ICON_HEIGHT(screen)); @@ -270,7 +270,7 @@ void icons_init(void) load_icons(path, Iconset_Remotescreen_viewers); } else - load_icons(DEFAULT_REMOTE_VIEWER_BMP, Iconset_Mainscreen_viewers); + load_icons(DEFAULT_REMOTE_VIEWER_BMP, Iconset_Remotescreen_viewers); #endif } |