Bug in ClassDefTable.GetClassValue
Ollhax opened this issue · 2 comments
Ollhax commented
In the function GetClassValue, there's a line:
return classValueArray[startGlyph + (glyphIndex - startGlyph)];
Which I'm pretty sure should be:
return classValueArray[glyphIndex - startGlyph];
Happypig375 commented
You can send a pull request directly.