diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2005-11-16 02:55:26 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2005-11-16 02:55:26 +0000 |
| commit | 6a53c33a8b958596ba86653e3c15ff52c004c764 (patch) | |
| tree | b1cf2db6a138d6564bd0a47f944fb578200598f9 /apps/gui | |
| parent | 8517ed8939b7323be8371cd902544154ade984b9 (diff) | |
| download | rockbox-6a53c33a8b958596ba86653e3c15ff52c004c764.zip rockbox-6a53c33a8b958596ba86653e3c15ff52c004c764.tar.gz rockbox-6a53c33a8b958596ba86653e3c15ff52c004c764.tar.bz2 rockbox-6a53c33a8b958596ba86653e3c15ff52c004c764.tar.xz | |
fixed the warning and changed playlist max entries in buffer to 200 as it was before
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7902 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/icon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/icon.h b/apps/gui/icon.h index a9ae058..1eefc48 100644 --- a/apps/gui/icon.h +++ b/apps/gui/icon.h @@ -25,7 +25,7 @@ #ifdef HAVE_LCD_BITMAP typedef const unsigned char * ICON; #else - typedef unsigned short ICON; + typedef short ICON; #endif #define CURSOR_CHAR 0x92 |