#809 autogwow when button is hold, justify align fixes

This commit is contained in:
honfika@gmail.com
2015-02-28 20:35:26 +01:00
parent a9a1e8c5fd
commit ca30321d08
15 changed files with 223 additions and 57 deletions

View File

@@ -2868,9 +2868,9 @@ public class SWFInputStream implements AutoCloseable {
ret.textHeight = readUI16("textHeight");
}
int glyphCount = readUI8("glyphCount");
ret.glyphEntries = new GLYPHENTRY[glyphCount];
ret.glyphEntries = new ArrayList<>(glyphCount);
for (int i = 0; i < glyphCount; i++) {
ret.glyphEntries[i] = readGLYPHENTRY(glyphBits, advanceBits, "glyphEntry");
ret.glyphEntries.add(readGLYPHENTRY(glyphBits, advanceBits, "glyphEntry"));
}
alignByte();
endDumpLevel();