diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-07-19 21:46:37 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-07-19 21:46:37 +0000 |
| commit | 638dd6786a75e5d3e87a9e04f80138d80665f230 (patch) | |
| tree | ef376ff7e32e88913f833344d33b9810a023187e /apps/tree.c | |
| parent | 5846aab6542104003bf03c29851bc3c12bc8da7a (diff) | |
| download | rockbox-638dd6786a75e5d3e87a9e04f80138d80665f230.zip rockbox-638dd6786a75e5d3e87a9e04f80138d80665f230.tar.gz rockbox-638dd6786a75e5d3e87a9e04f80138d80665f230.tar.bz2 rockbox-638dd6786a75e5d3e87a9e04f80138d80665f230.tar.xz | |
Const'ed the logo, the bitmaps and the credits (optimization for running from ROM)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4896 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
| -rw-r--r-- | apps/tree.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/tree.c b/apps/tree.c index 988e6b3..754e84f 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -163,8 +163,6 @@ void tree_get_filetypes(struct filetype** types, int* count) #define SCROLLBAR_Y lcd_getymargin() #define SCROLLBAR_WIDTH 6 -extern unsigned char bitmap_icons_6x8[LastIcon][6]; - #else /* HAVE_LCD_BITMAP */ #define TREE_MAX_ON_SCREEN 2 @@ -461,7 +459,7 @@ static int showdir(char *path, int start, int *dirfilter) bool dir_buffer_full; #ifdef HAVE_LCD_BITMAP - char* icon; + const char* icon; int line_height; int fw, fh; lcd_setfont(FONT_UI); |