diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2005-11-09 01:17:57 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2005-11-09 01:17:57 +0000 |
| commit | f7c97522a874cf8136b8e5e014b1a7abb47bc7fc (patch) | |
| tree | a026afc66a257c065b9308e2436158e76a6b9212 /apps/filetypes.c | |
| parent | 0b00108c3eab73420c5b03cbe603b865276e13e8 (diff) | |
| download | rockbox-f7c97522a874cf8136b8e5e014b1a7abb47bc7fc.zip rockbox-f7c97522a874cf8136b8e5e014b1a7abb47bc7fc.tar.gz rockbox-f7c97522a874cf8136b8e5e014b1a7abb47bc7fc.tar.bz2 rockbox-f7c97522a874cf8136b8e5e014b1a7abb47bc7fc.tar.xz | |
Fixed the icon for unknown file types on the archos Player, and the bug when removing the last file on the screen in filetree, added some code for playlists integration with multi-screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7800 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetypes.c')
| -rw-r--r-- | apps/filetypes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c index 5d1c556..d5a9003 100644 --- a/apps/filetypes.c +++ b/apps/filetypes.c @@ -162,7 +162,7 @@ int filetype_get_icon(int attr) #ifdef HAVE_LCD_BITMAP return NULL; #else - return -1; + return Icon_Unknown; #endif } else |