--- nono/wx/fontmanager.h 2026/04/29 17:05:16 1.1.1.2 +++ nono/wx/fontmanager.h 2026/04/29 17:05:31 1.1.1.3 @@ -49,10 +49,10 @@ class FontManager void SetGlyph7E(bool value) { glyph_7e = value; } // ASCII のグリフを返す - const uint8 *AsciiGlyph(uint8, uint attr) const; + const uint8 *AsciiGlyph(uint8) const; // 漢字のグリフを返す - std::vector KanjiGlyph(uint16, uint attr) const; + const uint8 *KanjiGlyph(uint16) const; int GetFontWidth() const { return font_width; } int GetFontHeight() const { return font_height; } @@ -70,7 +70,6 @@ class FontManager // グリフデータ std::vector ascii_glyph {}; - std::vector bold_glyph {}; // 可変のグリフ bool glyph_5c {};