12345678910111213141516171819202122232425262728 |
-
- //{{BLOCK(ascii)
-
- //======================================================================
- //
- // ascii, 256x24@4,
- // + palette 256 entries, not compressed
- // + 96 tiles lz77 compressed
- // Total size: 512 + 644 = 1156
- //
- // Time-stamp: 2016-08-17, 18:10:07
- // Exported by Cearn's GBA Image Transmogrifier, v0.8.13
- // ( http://www.coranac.com/projects/#grit )
- //
- //======================================================================
-
- #ifndef GRIT_ASCII_H
- #define GRIT_ASCII_H
-
- #define asciiTilesLen 644
- extern const unsigned int asciiTiles[161];
-
- #define asciiPalLen 512
- extern const unsigned short asciiPal[256];
-
- #endif // GRIT_ASCII_H
-
- //}}BLOCK(ascii)
|