8 lines
362 B
Plaintext
8 lines
362 B
Plaintext
#define remove_width 20
|
|
#define remove_height 15
|
|
static char remove_bits[] = {
|
|
0x80, 0x00, 0x00, 0xc0, 0x00, 0x00, 0xe0, 0x00, 0x00, 0xf0, 0x00, 0x00,
|
|
0xf8, 0xff, 0x0f, 0xfc, 0xff, 0x0f, 0xfe, 0xff, 0x0f, 0xff, 0xff, 0x0f,
|
|
0xfe, 0xff, 0x0f, 0xfc, 0xff, 0x0f, 0xf8, 0xff, 0x0f, 0xf0, 0x00, 0x00,
|
|
0xe0, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x80, 0x00, 0x00};
|