Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / coolimages / mouseimage.c
blob53dfe467baed2edfa00eaded482d6c59efa53bca
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "coolimages.h"
8 #define MOUSEIMAGE_WIDTH 15
9 #define MOUSEIMAGE_HEIGHT 15
10 #define MOUSEIMAGE_COLORS 16
12 static const UBYTE mouseimage_data[] =
14 0,0,0,0,0,0,12,13,10,13,5,9,2,6,0,
15 0,0,0,0,9,10,4,12,5,4,13,2,2,0,0,
16 0,0,0,9,13,12,12,12,12,7,2,1,7,9,0,
17 0,0,9,13,12,12,6,6,10,7,4,1,4,2,9,
18 0,0,1,11,3,14,6,11,6,12,4,4,15,13,8,
19 0,11,4,3,14,14,14,3,8,12,5,5,10,13,9,
20 0,10,6,14,14,14,6,8,11,5,5,4,10,13,8,
21 9,4,3,14,14,3,3,12,4,5,1,10,13,11,0,
22 5,12,6,3,3,6,11,12,5,5,10,10,10,0,0,
23 1,12,11,6,11,11,12,15,5,5,1,7,9,0,0,
24 1,15,12,12,12,12,15,15,15,5,7,12,0,0,0,
25 5,4,5,15,15,15,12,12,5,7,12,0,0,0,0,
26 9,7,4,5,15,12,12,4,7,12,0,0,0,0,0,
27 0,4,10,5,15,5,10,13,9,0,0,0,0,0,0,
28 0,0,12,1,1,1,0,0,0,0,0,0,0,0,0
32 static const UBYTE mouseimage_pal[] =
34 255,255, 0,
35 42, 50, 58,
36 114,114,122,
37 226,226,242,
38 114,126,162,
39 130,142,182,
40 210,210,222,
41 62, 74, 90,
42 170,166,170,
43 198,198,210,
44 94,102,126,
45 190,190,214,
46 167,168,217,
47 82, 86,102,
48 238,238,242,
49 138,150,202
52 const struct CoolImage cool_mouseimage =
54 mouseimage_data,
55 mouseimage_pal,
56 MOUSEIMAGE_WIDTH,
57 MOUSEIMAGE_HEIGHT,
58 MOUSEIMAGE_COLORS