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