mirror of https://github.com/nmlgc/ReC98.git
23 lines
424 B
C
23 lines
424 B
C
// Using the same naming convention as for the gaiji characters...
|
|
#pragma option -b-
|
|
typedef enum {
|
|
pl_F = 0,
|
|
pl_M = 1,
|
|
pl_1 = 2,
|
|
pl_2 = 3,
|
|
pl_3 = 4,
|
|
pl_4 = 5,
|
|
pl_5 = 6,
|
|
pl_S = 7,
|
|
pl_G = 8,
|
|
pl_COUNT,
|
|
} piano_label_t;
|
|
#pragma option -b
|
|
|
|
#define PIANO_LABEL_FONT_H 8
|
|
|
|
extern const unsigned char PIANO_LABEL_FONT[pl_COUNT][PIANO_LABEL_FONT_H];
|
|
|
|
// Assumes that the GRCG is active.
|
|
void pascal piano_label_put_raw();
|