1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#define mapcursor_width 11
#define mapcursor_height 11
#define mapcursor_x_hot 5
#define mapcursor_y_hot 5
#ifndef WIN32
static char mapcursor_bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
#else
/* doesn't work under X */
static char mapcursor_bits[] = {
0x01, 0x04, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x70, 0x00,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x01, 0x04};
#endif
#define mapmask_width 11
#define mapmask_height 11
#define mapmask_x_hot 5
#define mapmask_y_hot 5
static char mapmask_bits[] = {
0x01, 0x04, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x70, 0x00,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x01, 0x04};
|