mirror of https://github.com/nmlgc/ReC98.git
9 lines
326 B
C
9 lines
326 B
C
// Types [len] half- (ank) or full-width (kanji) characters of [str] onto the
|
|
// given position in VRAM, with a frame delay between each character.
|
|
void pascal graph_type_ank(
|
|
screen_x_t left, vram_y_t top, int len, const char *str
|
|
);
|
|
void pascal graph_type_kanji(
|
|
screen_x_t left, vram_y_t top, int len, const char *str
|
|
);
|