summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/rendfont.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/rendfont.h')
-rw-r--r--src/emu/rendfont.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/rendfont.h b/src/emu/rendfont.h
index 4db45ca0a90..13d06be7dd9 100644
--- a/src/emu/rendfont.h
+++ b/src/emu/rendfont.h
@@ -90,10 +90,10 @@ 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
- dynamic_array<glyph> m_glyphs[256]; // array of glyph subtables
- dynamic_array<char> m_rawdata; // pointer to the raw data for the font
+ 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
+ osd_font *m_osdfont; // handle to the OSD font
// constants
static const int CACHED_CHAR_SIZE = 12;