mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-15 16:47:10 +02:00
10 lines
539 B
C
10 lines
539 B
C
|
#define pacman_width 24
|
||
|
#define pacman_height 24
|
||
|
static unsigned char pacman_bits[] = {
|
||
|
0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0xc0, 0xff, 0x01, 0xe0, 0xff, 0x03,
|
||
|
0xf0, 0xff, 0x07, 0xf8, 0xff, 0x07, 0xfc, 0xff, 0x03, 0xfe, 0xff, 0x01,
|
||
|
0xfe, 0xff, 0x00, 0xfe, 0x3f, 0x00, 0xff, 0x1f, 0x00, 0xff, 0x0f, 0x00,
|
||
|
0xff, 0x07, 0x00, 0xff, 0x0f, 0x00, 0xff, 0x1f, 0x00, 0xfe, 0x3f, 0x00,
|
||
|
0xfe, 0x7f, 0x00, 0xfe, 0xff, 0x01, 0xfc, 0xff, 0x03, 0xf8, 0xff, 0x07,
|
||
|
0xf0, 0xff, 0x07, 0xe0, 0xff, 0x03, 0xc0, 0xff, 0x01, 0x00, 0x3e, 0x00};
|