1
2
3
4
5
6
7
8
|
#define epsilon_width 16
#define epsilon_height 16
#define epsilon_x_hot -1
#define epsilon_y_hot -1
static char epsilon_bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0xfc, 0x01, 0x0e, 0x01,
0x06, 0x00, 0x7e, 0x00, 0x7e, 0x00, 0x06, 0x00, 0x0e, 0x01, 0xfc, 0x01,
0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|