(svn r25511) -Fix-ish: add the same printable key assert to the sprite font cache as the freetype font cache

This commit is contained in:
rubidium 2013-06-29 12:03:44 +00:00
parent dd49c84363
commit fac0b83df6
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ public:
virtual const Sprite *GetGlyph(GlyphID key);
virtual uint GetGlyphWidth(GlyphID key);
virtual bool GetDrawGlyphShadow();
virtual GlyphID MapCharToGlyph(WChar key) { return SPRITE_GLYPH | key; }
virtual GlyphID MapCharToGlyph(WChar key) { assert(IsPrintable(key)); return SPRITE_GLYPH | key; }
virtual const void *GetFontTable(uint32 tag, size_t &length) { length = 0; return NULL; }
};