mirror of
https://github.com/notblisy/RUBYSAPPHIREDLC.git
synced 2026-07-12 22:53:45 -05:00
29 lines
689 B
C
29 lines
689 B
C
|
|
//{{BLOCK(clock)
|
|
|
|
//======================================================================
|
|
//
|
|
// clock, 64x64@4,
|
|
// + palette 256 entries, not compressed
|
|
// + 64 tiles not compressed
|
|
// Total size: 512 + 2048 = 2560
|
|
//
|
|
// Time-stamp: 2023-09-07, 13:04:07
|
|
// Exported by Cearn's GBA Image Transmogrifier, v0.8.6
|
|
// ( http://www.coranac.com/projects/#grit )
|
|
//
|
|
//======================================================================
|
|
|
|
#ifndef GRIT_CLOCK_H
|
|
#define GRIT_CLOCK_H
|
|
|
|
#define clockTilesLen 2048
|
|
extern const unsigned short clockTiles[1024];
|
|
|
|
#define clockPalLen 512
|
|
extern const unsigned short clockPal[256];
|
|
|
|
#endif // GRIT_CLOCK_H
|
|
|
|
//}}BLOCK(clock)
|