summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-06-29 21:06:19 +0000
committerJens Arnold <amiconn@rockbox.org>2005-06-29 21:06:19 +0000
commit848be818285a8d61894887202b28f526a009fd92 (patch)
tree7a8ba511dd685a5d9c13aab6638c63034de8266a
parent305a7ce1a29b35a463a5ea79e8089b362f9810da (diff)
downloadrockbox-848be818285a8d61894887202b28f526a009fd92.tar.gz
rockbox-848be818285a8d61894887202b28f526a009fd92.zip
No need to included unused data in the archos builds.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6932 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/snake2.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/snake2.c b/apps/plugins/snake2.c
index eb02d22cfc..e1f0c32a66 100644
--- a/apps/plugins/snake2.c
+++ b/apps/plugins/snake2.c
@@ -118,6 +118,7 @@ static int applecount=0;
static char phscore[30];
+#ifdef BMPHEIGHT_snakebmp
const unsigned char snakebmp[] = {
0x00, 0x00, 0x00, 0xe0, 0x20, 0xa0, 0xa0, 0x00, 0xe0, 0xa0, 0xa0, 0xe0, 0x00,
0xe0, 0x40, 0x80, 0x40, 0xe0, 0x00, 0xe0, 0xa0, 0xa0, 0xa0, 0x00, 0x00, 0xf0,
@@ -329,7 +330,9 @@ const unsigned char snakebmp[] = {
0x6d, 0x39, 0x1c, 0x0f,
};
+#endif
+#ifdef BMPHEIGHT_snakeupbmp
const unsigned char snakeupbmp[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
@@ -398,6 +401,7 @@ const unsigned char snakeupbmp[] = {
0x06, 0x0c, 0x00, 0x00,
};
+#endif
#define NORTH 1
#define EAST 2