Bez popisu

ascii.h 687B

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