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
+2 -2
View File
@@ -56,7 +56,7 @@ public:
FORMAT_RGBA
};
GlyphData(unsigned short glyph, GlyphMetrics glyphMetrics, Format f);
GlyphData(unsigned int glyph, GlyphMetrics glyphMetrics, Format f);
virtual ~GlyphData();
// Implements Data.
@@ -115,7 +115,7 @@ public:
private:
// The glyph itself
unsigned short glyph;
unsigned int glyph;
// Glyph metrics
GlyphMetrics metrics;