summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-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;
118static char phscore[30]; 118static char phscore[30];
119 119
120 120
121#ifdef BMPHEIGHT_snakebmp
121const unsigned char snakebmp[] = { 122const unsigned char snakebmp[] = {
1220x00, 0x00, 0x00, 0xe0, 0x20, 0xa0, 0xa0, 0x00, 0xe0, 0xa0, 0xa0, 0xe0, 0x00, 1230x00, 0x00, 0x00, 0xe0, 0x20, 0xa0, 0xa0, 0x00, 0xe0, 0xa0, 0xa0, 0xe0, 0x00,
1230xe0, 0x40, 0x80, 0x40, 0xe0, 0x00, 0xe0, 0xa0, 0xa0, 0xa0, 0x00, 0x00, 0xf0, 1240xe0, 0x40, 0x80, 0x40, 0xe0, 0x00, 0xe0, 0xa0, 0xa0, 0xa0, 0x00, 0x00, 0xf0,
@@ -329,7 +330,9 @@ const unsigned char snakebmp[] = {
3290x6d, 0x39, 0x1c, 0x0f, 3300x6d, 0x39, 0x1c, 0x0f,
330 331
331}; 332};
333#endif
332 334
335#ifdef BMPHEIGHT_snakeupbmp
333const unsigned char snakeupbmp[] = { 336const unsigned char snakeupbmp[] = {
3340x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 3370x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3350x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 3380x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
@@ -398,6 +401,7 @@ const unsigned char snakeupbmp[] = {
3980x06, 0x0c, 0x00, 0x00, 4010x06, 0x0c, 0x00, 0x00,
399 402
400}; 403};
404#endif
401 405
402#define NORTH 1 406#define NORTH 1
403#define EAST 2 407#define EAST 2