mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-19 03:02:16 +00:00
SWF computeDependentFrames creates timeline when null
This commit is contained in:
@@ -556,8 +556,9 @@ public final class SWF implements SWFContainerItem, Timelined {
|
||||
|
||||
public void computeDependentFrames() {
|
||||
Map<Integer, Set<Integer>> dep = new HashMap<>();
|
||||
for (int i = 0; i < timeline.getFrameCount(); i++) {
|
||||
Frame frame = timeline.getFrame(i);
|
||||
Timeline tim = getTimeline();
|
||||
for (int i = 0; i < tim.getFrameCount(); i++) {
|
||||
Frame frame = tim.getFrame(i);
|
||||
Set<Integer> needed = new HashSet<>();
|
||||
frame.getNeededCharacters(needed);
|
||||
for (Integer needed1 : needed) {
|
||||
|
||||
Reference in New Issue
Block a user