summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-04-17 08:37:01 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-04-17 08:37:01 +0000
commite9610dca80dbd82c539fbcc676720b15fb9e60d5 (patch)
tree11bd381c8d7af9c153832d5032423f6f577167e4
parent69e1f7528a24735b3962008fd59336a88fe32d3e (diff)
downloadrockbox-e9610dca80dbd82c539fbcc676720b15fb9e60d5.tar.gz
rockbox-e9610dca80dbd82c539fbcc676720b15fb9e60d5.zip
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.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/apps/gui/icon.c b/apps/gui/icon.c
index 1368c6808e..82f24d893b 100644
--- a/apps/gui/icon.c
+++ b/apps/gui/icon.c
@@ -28,17 +28,12 @@
28#include "bmp.h" 28#include "bmp.h"
29#include "filetypes.h" 29#include "filetypes.h"
30 30
31/* Quick and Dirty hack untill lcd bitmap drawing is fixed */
32#ifdef HAVE_REMOTE_LCD
33#include "lcd-remote.h"
34#endif
35
36
37#include <default_icons.h> 31#include <default_icons.h>
38#ifdef HAVE_REMOTE_LCD 32#ifdef HAVE_REMOTE_LCD
39#include <remote_default_icons.h> 33#include <remote_default_icons.h>
40#endif 34#endif
41 35
36/* These are just the file names, the full path is snprint'ed when used */
42#define DEFAULT_VIEWER_BMP "viewers" 37#define DEFAULT_VIEWER_BMP "viewers"
43#define DEFAULT_REMOTE_VIEWER_BMP "remote_viewers" 38#define DEFAULT_REMOTE_VIEWER_BMP "remote_viewers"
44 39