equal
deleted
inserted
replaced
91 { |
91 { |
92 TTGlyphID ttGlyphID = (TTGlyphID) LE_GET_GLYPH(glyphID); |
92 TTGlyphID ttGlyphID = (TTGlyphID) LE_GET_GLYPH(glyphID); |
93 TTGlyphID firstGlyph = SWAPW(startGlyph); |
93 TTGlyphID firstGlyph = SWAPW(startGlyph); |
94 TTGlyphID lastGlyph = firstGlyph + SWAPW(glyphCount); |
94 TTGlyphID lastGlyph = firstGlyph + SWAPW(glyphCount); |
95 |
95 |
96 if (ttGlyphID > firstGlyph && ttGlyphID < lastGlyph) { |
96 if (ttGlyphID >= firstGlyph && ttGlyphID < lastGlyph) { |
97 return SWAPW(classValueArray[ttGlyphID - firstGlyph]); |
97 return SWAPW(classValueArray[ttGlyphID - firstGlyph]); |
98 } |
98 } |
99 |
99 |
100 return 0; |
100 return 0; |
101 } |
101 } |