mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-15 22:32:06 +00:00
Fixed #1963 Reading CLIPEVENTFLAGS ClipActionEndFlag on SWF versions >= 6
This commit is contained in:
@@ -2026,7 +2026,7 @@ public class SWFInputStream implements AutoCloseable {
|
||||
ret.clipEventPress = readUB(1, "clipEventPress") == 1;
|
||||
ret.clipEventInitialize = readUB(1, "clipEventInitialize") == 1;
|
||||
ret.clipEventData = readUB(1, "clipEventData") == 1;
|
||||
if (swf.version >= 6) {
|
||||
if (swf.version >= 6 && available() > 0) {
|
||||
ret.reserved = (int) readUB(5, "reserved");
|
||||
ret.clipEventConstruct = readUB(1, "clipEventConstruct") == 1;
|
||||
ret.clipEventKeyPress = readUB(1, "clipEventKeyPress") == 1;
|
||||
|
||||
Reference in New Issue
Block a user