No Description

background.h 881B

123456789101112131415161718192021222324252627282930313233
  1. //{{BLOCK(background)
  2. //======================================================================
  3. //
  4. // background, 240x160@4,
  5. // Transparent palette entry: 1.
  6. // + palette 2 entries, not compressed
  7. // + 2 tiles (t|f|p reduced) not compressed
  8. // + regular map (flat), not compressed, 30x20
  9. // Total size: 4 + 64 + 1200 = 1268
  10. //
  11. // Time-stamp: 2014-11-15, 18:49:02
  12. // Exported by Cearn's GBA Image Transmogrifier, v0.8.6
  13. // ( http://www.coranac.com/projects/#grit )
  14. //
  15. //======================================================================
  16. #ifndef GRIT_BACKGROUND_H
  17. #define GRIT_BACKGROUND_H
  18. #define backgroundTilesLen 64
  19. extern const unsigned short backgroundTiles[32];
  20. #define backgroundMapLen 1200
  21. extern const unsigned short backgroundMap[600];
  22. #define backgroundPalLen 4
  23. extern const unsigned short backgroundPal[2];
  24. #endif // GRIT_BACKGROUND_H
  25. //}}BLOCK(background)