Cleanup: Remove unused GetUnicodeGlyph()

This commit is contained in:
Peter Nelson
2022-09-17 23:23:51 +01:00
committed by PeterN
parent 2cdd8b7429
commit b00e18fe9f
3 changed files with 1 additions and 15 deletions

View File

@@ -17,12 +17,12 @@
class SpriteFontCache : public FontCache {
private:
SpriteID **glyph_to_spriteid_map; ///< Mapping of glyphs to sprite IDs.
SpriteID GetUnicodeGlyph(WChar key);
void ClearGlyphToSpriteMap();
public:
SpriteFontCache(FontSize fs);
~SpriteFontCache();
virtual SpriteID GetUnicodeGlyph(WChar key);
virtual void SetUnicodeGlyph(WChar key, SpriteID sprite);
virtual void InitializeUnicodeGlyphMap();
virtual void ClearFontCache();