--- nono/lib/textscreen.h 2026/04/29 17:05:08 1.1.1.9 +++ nono/lib/textscreen.h 2026/04/29 17:05:12 1.1.1.10 @@ -162,6 +162,12 @@ class TextScreen // 現在位置に1文字出力 (上位バイトは属性) void Putc(uint16 ch); + // 座標を指定して1文字出力 (上位バイトは属性) + void Putc(int x, int y, uint16 ch) { + Locate(x, y); + Putc(ch); + } + // 現在位置に文字列を出力 void Puts(const char *str);