6 lines
191 B
C
6 lines
191 B
C
|
#define image_width 10
|
||
|
#define image_height 10
|
||
|
static unsigned char image_bits[] = {
|
||
|
0xff,0xff,0xff,0xff,0x03,0xff,0x03,0xff,0x03,0xff,0x03,0xff,
|
||
|
0x03,0xff,0x03,0xff,0xff,0xff,0xff,0xff};
|