#1107 Text Offset Incorrect fixed

This commit is contained in:
honfika@gmail.com
2015-12-12 17:06:46 +01:00
parent 52c27db229
commit 5960434c23
2 changed files with 2 additions and 2 deletions

View File

@@ -2981,7 +2981,7 @@ public class SWFInputStream implements AutoCloseable {
GLYPHENTRY ret = new GLYPHENTRY();
newDumpLevel(name, "GLYPHENTRY");
ret.glyphIndex = (int) readUB(glyphBits, "glyphIndex");
ret.glyphAdvance = (int) readUB(advanceBits, "glyphAdvance");
ret.glyphAdvance = (int) readSB(advanceBits, "glyphAdvance");
endDumpLevel();
return ret;
}