Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / coolimages / windowimage.c
blobc687a90a67acba6e4b8766a22308cda791af1672
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "coolimages.h"
8 #define WINDOWIMAGE_WIDTH 15
9 #define WINDOWIMAGE_HEIGHT 15
10 #define WINDOWIMAGE_COLORS 16
12 static const UBYTE windowimage_data[] =
14 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
15 15,1, 1, 15,1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15,
16 15,1, 1, 15,1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15,
17 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
18 15,14,13,13,13,12,11,11,10,9, 9, 8, 8, 7, 15,
19 15,13,13,13,12,12,11,10,10,9, 8, 8, 7, 6, 15,
20 15,13,13,12,12,11,11,10,9, 9, 8, 7, 7, 6, 15,
21 15,13,12,12,12,11,10,9, 9, 8, 8, 7, 6, 5, 15,
22 15,13,12,12,11,10,10,9, 8, 8, 7, 6, 6, 5, 15,
23 15,12,12,11,11,10,9, 9, 8, 7, 7, 6, 5, 4, 15,
24 15,12,12,11,10,10,9, 8, 8, 7, 6, 5, 4, 4, 15,
25 15,12,11,10,10,9, 8, 8, 7, 6, 6, 5, 4, 3, 15,
26 15,11,11,10,9, 9, 8, 7, 7, 6, 5, 4, 4, 3, 15,
27 15,11,10,10,9, 8, 8, 7, 6, 5, 5, 4, 3, 2, 15,
28 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15
31 static const UBYTE windowimage_pal[] =
33 0x00, 0x00, 0x00,
34 0x77, 0x77, 0xff,
35 0x11, 0x11, 0x11,
36 0x22, 0x22, 0x22,
37 0x33, 0x33, 0x33,
38 0x44, 0x44, 0x44,
39 0x55, 0x55, 0x55,
40 0x66, 0x66, 0x66,
41 0x77, 0x77, 0x77,
42 0x88, 0x88, 0x88,
43 0x99, 0x99, 0x99,
44 0xaa, 0xaa, 0xaa,
45 0xbb, 0xbb, 0xbb,
46 0xcc, 0xcc, 0xcc,
47 0xdd, 0xdd, 0xdd,
48 0x00, 0x00, 0x00
51 const struct CoolImage cool_windowimage =
53 windowimage_data,
54 windowimage_pal,
55 WINDOWIMAGE_WIDTH,
56 WINDOWIMAGE_HEIGHT,
57 WINDOWIMAGE_COLORS