Backport
[AROS.git] / compiler / coolimages / saveimage.c
blobe3c13b22408627571890e65b794deecf70c39248
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "coolimages.h"
8 #define SAVEIMAGE_WIDTH 23
9 #define SAVEIMAGE_HEIGHT 16
10 #define SAVEIMAGE_COLORS 5
12 static const UBYTE saveimage_data[] =
14 00,04,04,04,04,04,04,04,04,04,04,04,04,04,04,00,00,00,00,00,00,00,00,
15 04,04,02,02,02,02,02,02,02,02,02,02,02,04,04,00,00,00,00,00,00,00,00,
16 04,04,02,02,04,04,04,04,04,04,04,02,02,04,02,03,03,03,03,00,00,00,00,
17 04,04,02,02,02,02,02,02,02,02,02,02,02,02,03,03,03,03,03,01,00,00,00,
18 04,04,02,02,04,04,04,04,02,02,02,02,02,03,03,03,03,03,03,03,01,00,00,
19 04,04,02,02,02,02,02,02,02,02,02,02,02,03,03,03,01,03,03,03,03,01,00,
20 04,04,04,02,02,02,02,02,02,02,02,02,03,03,03,01,00,03,03,03,03,03,01,
21 04,04,04,04,04,04,04,04,02,03,03,02,03,03,01,02,00,00,03,03,03,03,01,
22 04,04,04,04,04,04,04,04,02,03,03,03,03,03,01,02,00,00,00,03,03,03,01,
23 04,04,04,02,02,02,02,02,02,03,03,03,03,03,03,03,03,00,00,00,03,01,00,
24 04,04,04,02,02,04,04,02,02,03,03,03,03,03,03,03,01,00,00,00,00,00,00,
25 04,04,04,02,02,04,04,02,02,02,03,03,03,03,01,01,00,00,00,00,00,00,00,
26 04,04,04,02,02,04,04,02,02,02,03,03,03,01,02,01,00,00,00,00,00,00,00,
27 04,04,04,02,02,02,02,02,02,02,02,03,01,02,04,01,00,00,00,00,00,00,00,
28 00,01,01,01,01,01,01,01,01,01,01,02,02,01,00,00,00,00,00,00,00,00,00,
29 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
32 static const UBYTE saveimage_pal[] =
34 0xb3,0xb3,0xb3,0x00,0x00,0x00,
35 0xe0,0xe0,0xe0,0xdb,0x20,0x26,
36 0x65,0x4b,0xbf
39 const struct CoolImage cool_saveimage =
41 saveimage_data,
42 saveimage_pal,
43 SAVEIMAGE_WIDTH,
44 SAVEIMAGE_HEIGHT,
45 SAVEIMAGE_COLORS