diff --git a/trunk/src/com/jpexs/decompiler/flash/action/swf4/ActionPush.java b/trunk/src/com/jpexs/decompiler/flash/action/swf4/ActionPush.java index f28079610..3fa218f1c 100644 --- a/trunk/src/com/jpexs/decompiler/flash/action/swf4/ActionPush.java +++ b/trunk/src/com/jpexs/decompiler/flash/action/swf4/ActionPush.java @@ -316,6 +316,9 @@ public class ActionPush extends Action { stack.push(dvt); if (o instanceof RegisterNumber) { dvt.computedRegValue = variables.get("__register" + ((RegisterNumber) o).number); + if (regNames.containsKey(((RegisterNumber)o).number)) { + ((RegisterNumber)o).name = regNames.get(((RegisterNumber)o).number); + } } pos++; }