aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/FontGlyphCache.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/FontGlyphCache.h')
-rw-r--r--engines/wintermute/FontGlyphCache.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/wintermute/FontGlyphCache.h b/engines/wintermute/FontGlyphCache.h
index 50db962771..c30e0f92b8 100644
--- a/engines/wintermute/FontGlyphCache.h
+++ b/engines/wintermute/FontGlyphCache.h
@@ -111,7 +111,8 @@ public:
void AddGlyph(wchar_t ch, int glyphIndex, FT_GlyphSlot glyphSlot, size_t width, size_t height, byte *pixels, size_t stride = 0);
private:
- typedef std::map<wchar_t, GlyphInfo *> GlyphInfoMap;
+ //typedef Common::HashMap<wchar_t, GlyphInfo *> GlyphInfoMap;
+ typedef Common::HashMap<char, GlyphInfo *> GlyphInfoMap; // TODO
GlyphInfoMap m_Glyphs;
};