diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-04-17 08:37:01 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-04-17 08:37:01 +0000 |
| commit | e9610dca80dbd82c539fbcc676720b15fb9e60d5 (patch) | |
| tree | 11bd381c8d7af9c153832d5032423f6f577167e4 | |
| parent | 69e1f7528a24735b3962008fd59336a88fe32d3e (diff) | |
| download | rockbox-e9610dca80dbd82c539fbcc676720b15fb9e60d5.zip rockbox-e9610dca80dbd82c539fbcc676720b15fb9e60d5.tar.gz rockbox-e9610dca80dbd82c539fbcc676720b15fb9e60d5.tar.bz2 rockbox-e9610dca80dbd82c539fbcc676720b15fb9e60d5.tar.xz | |
Remove unneeded #include, comment the filename define
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13193 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/gui/icon.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/apps/gui/icon.c b/apps/gui/icon.c index 1368c68..82f24d8 100644 --- a/apps/gui/icon.c +++ b/apps/gui/icon.c @@ -28,17 +28,12 @@ #include "bmp.h" #include "filetypes.h" -/* Quick and Dirty hack untill lcd bitmap drawing is fixed */ -#ifdef HAVE_REMOTE_LCD -#include "lcd-remote.h" -#endif - - #include <default_icons.h> #ifdef HAVE_REMOTE_LCD #include <remote_default_icons.h> #endif +/* These are just the file names, the full path is snprint'ed when used */ #define DEFAULT_VIEWER_BMP "viewers" #define DEFAULT_REMOTE_VIEWER_BMP "remote_viewers" |