1
2
3
4
5
6
7
|
#define ff_width 16
#define ff_height 16
static unsigned char ff_bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x18, 0x06, 0x38, 0x0e,
0x78, 0x1e, 0xf8, 0x3e, 0xf8, 0x3e, 0x78, 0x1e, 0x38, 0x0e, 0x18, 0x06,
0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
|