-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplashscreen.h
32 lines (24 loc) · 892 Bytes
/
splashscreen.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//{{BLOCK(splashscreen)
//======================================================================
//
// splashscreen, 256x256@4,
// + palette 256 entries, not compressed
// + 205 tiles (t|f|p reduced) not compressed
// + regular map (in SBBs), not compressed, 32x32
// Total size: 512 + 6560 + 2048 = 9120
//
// Time-stamp: 2017-04-18, 00:34:24
// Exported by Cearn's GBA Image Transmogrifier, v0.8.3
// ( http://www.coranac.com/projects/#grit )
//
//======================================================================
#ifndef GRIT_SPLASHSCREEN_H
#define GRIT_SPLASHSCREEN_H
#define splashscreenTilesLen 6560
extern const unsigned short splashscreenTiles[3280];
#define splashscreenMapLen 2048
extern const unsigned short splashscreenMap[1024];
#define splashscreenPalLen 512
extern const unsigned short splashscreenPal[256];
#endif // GRIT_SPLASHSCREEN_H
//}}BLOCK(splashscreen)