mirror of
https://github.com/W3SLAV/automicropython_nds.git
synced 2025-06-18 11:05:37 -04:00
29 lines
644 B
C
29 lines
644 B
C
|
|
//{{BLOCK(font)
|
|
|
|
//======================================================================
|
|
//
|
|
// font, 8x768@4,
|
|
// + palette 16 entries, not compressed
|
|
// + 96 tiles not compressed
|
|
// Total size: 32 + 3072 = 3104
|
|
//
|
|
// Time-stamp: 2025-03-27, 19:20:41
|
|
// Exported by Cearn's GBA Image Transmogrifier, v0.9.2
|
|
// ( http://www.coranac.com/projects/#grit )
|
|
//
|
|
//======================================================================
|
|
|
|
#ifndef GRIT_FONT_H
|
|
#define GRIT_FONT_H
|
|
|
|
#define fontTilesLen 3072
|
|
extern const unsigned int fontTiles[768];
|
|
|
|
#define fontPalLen 32
|
|
extern const unsigned short fontPal[16];
|
|
|
|
#endif // GRIT_FONT_H
|
|
|
|
//}}BLOCK(font)
|