Use unsigned ints instead of unsigned shorts to represent UTF8 font glyphs

This commit is contained in:
Alex Szpakowski
2013-01-22 23:43:35 -04:00
parent ba4cf6204d
commit 022f549554
13 changed files with 32 additions and 32 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ public:
* Gets a specific glyph.
* @param glyph The (UNICODE) glyph to get data for
**/
virtual GlyphData *getGlyphData(unsigned short glyph) const = 0;
virtual GlyphData *getGlyphData(unsigned int glyph) const = 0;
/**
* Gets the number of glyphs the rasterizer has data for.