7 lines
291 B
C
7 lines
291 B
C
|
#define menu_cursor_width 16
|
||
|
#define menu_cursor_height 16
|
||
|
static char menu_cursor_bits[] = {
|
||
|
0x00, 0x00, 0x80, 0x7F, 0x88, 0x40, 0x9E, 0x5E, 0x88, 0x40, 0x80, 0x56,
|
||
|
0x80, 0x40, 0x80, 0x5A, 0x80, 0x40, 0x80, 0x5E, 0x80, 0x40, 0x80, 0x56,
|
||
|
0x80, 0x40, 0x80, 0x7F, 0x00, 0x00, 0x00, 0x00 };
|