mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-28 11:56:15 +00:00
#809 autogwow when button is hold, justify align fixes
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user