diff options
Diffstat (limited to 'src/emu/rendfont.h')
-rw-r--r-- | src/emu/rendfont.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/rendfont.h b/src/emu/rendfont.h index 1f05babd789..b2ec2f12568 100644 --- a/src/emu/rendfont.h +++ b/src/emu/rendfont.h @@ -96,14 +96,14 @@ private: int m_height; // height of the font, from ascent to descent int m_yoffs; // y offset from baseline to descent float m_scale; // 1 / height precomputed - glyph *m_glyphs[256]; // array of glyph subtables + glyph *m_glyphs[256]; // array of glyph subtables std::vector<char> m_rawdata; // pointer to the raw data for the font UINT64 m_rawsize; // size of the raw font data - osd_font *m_osdfont; // handle to the OSD font + std::unique_ptr<osd_font> m_osdfont; // handle to the OSD font int m_height_cmd; // height of the font, from ascent to descent int m_yoffs_cmd; // y offset from baseline to descent - glyph *m_glyphs_cmd[256]; // array of glyph subtables + glyph *m_glyphs_cmd[256]; // array of glyph subtables std::vector<char> m_rawdata_cmd; // pointer to the raw data for the font // constants |