-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbackground.h
44 lines (32 loc) · 1.03 KB
/
background.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
33
34
35
36
37
38
39
40
41
42
43
44
//{{BLOCK(levelBG)
//======================================================================
//
// levelBG, 128x64@8,
// Transparent palette entry: 2.
// + palette 256 entries, not compressed
// + 128 tiles not compressed
// Total size: 512 + 8192 = 8704
//
// Time-stamp: 2014-03-03, 22:16:35
// Exported by Cearn's GBA Image Transmogrifier, v0.8.6
// ( http://www.coranac.com/projects/#grit )
//
//======================================================================
#ifndef GRIT_LEVELBG_H
#define GRIT_LEVELBG_H
#define backgroundTilesLen 8192
extern const unsigned short backgroundTiles[4096];
#define backgroundPalLen 512
extern const unsigned short backgroundPal[256];
#define menuBGPalLen 512
extern const unsigned short menuBGPal[256];
#define girderMapLen 1024
extern const int girderMap[1024];
#define fenceBGMapLen 1024
extern const int fenceBGMap[1024];
#define buildingBGMapLen 1024
extern const int buildingBGMap[1024];
#define cloudBGMapLen 1024
extern const int cloudBGMap[1024];
#endif // GRIT_LEVELBG_H
//}}BLOCK(levelBG)