mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-17 04:42:01 +00:00
Fixed delocal_p, inclocal_p.
This commit is contained in:
@@ -71,7 +71,7 @@ public class DecLocalPIns extends InstructionDefinition {
|
||||
//same for declocal and declocalp (decimal)
|
||||
@Override
|
||||
public void translate(AVM2LocalData localData, TranslateStack stack, AVM2Instruction ins, List<GraphTargetItem> output, String path) {
|
||||
int regId = ins.operands[0];
|
||||
int regId = ins.operands[1];
|
||||
boolean isPostDec = false;
|
||||
if (!stack.isEmpty()) {
|
||||
GraphTargetItem stackTop = stack.peek();
|
||||
|
||||
@@ -71,7 +71,7 @@ public class IncLocalPIns extends InstructionDefinition {
|
||||
//same for inclocal and inclocalp (decimal)
|
||||
@Override
|
||||
public void translate(AVM2LocalData localData, TranslateStack stack, AVM2Instruction ins, List<GraphTargetItem> output, String path) {
|
||||
int regId = ins.operands[0];
|
||||
int regId = ins.operands[1];
|
||||
boolean isPostInc = false;
|
||||
if (!stack.isEmpty()) {
|
||||
GraphTargetItem stackTop = stack.peek();
|
||||
|
||||
Reference in New Issue
Block a user