mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 17:20:44 +00:00
stage fix
This commit is contained in:
+2
-2
@@ -196,7 +196,7 @@ public class ActionDeobfuscator extends SWFDecompilerAdapter {
|
||||
actions.removeZeroJumps();
|
||||
|
||||
ActionConstantPool cPool = getConstantPool(actions);
|
||||
LocalDataArea localData = new LocalDataArea(new Stage(), true);
|
||||
LocalDataArea localData = new LocalDataArea(new Stage(null), true);
|
||||
localData.stack = new FixItemCounterStack();
|
||||
ExecutionResult result = new ExecutionResult();
|
||||
FastActionListIterator iterator = actions.iterator();
|
||||
@@ -383,7 +383,7 @@ public class ActionDeobfuscator extends SWFDecompilerAdapter {
|
||||
|
||||
Map<String, Object> results = new HashMap<>();
|
||||
|
||||
LocalDataArea localData = new LocalDataArea(new Stage());
|
||||
LocalDataArea localData = new LocalDataArea(new Stage(null));
|
||||
localData.stack = new FixItemCounterStack();
|
||||
ExecutionResult result = new ExecutionResult();
|
||||
for (ActionItem actionItem : actions) {
|
||||
|
||||
Reference in New Issue
Block a user