From 4d184231f48f231fe1bf3abde81ba953ade73cd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=F8=EDk?= Date: Sat, 15 Jun 2013 19:44:42 +0200 Subject: [PATCH] AS1/2 postincrement fix --- .../jpexs/decompiler/flash/action/swf5/ActionStoreRegister.java | 1 + 1 file changed, 1 insertion(+) diff --git a/trunk/src/com/jpexs/decompiler/flash/action/swf5/ActionStoreRegister.java b/trunk/src/com/jpexs/decompiler/flash/action/swf5/ActionStoreRegister.java index cc80a1e23..ccd4a4a48 100644 --- a/trunk/src/com/jpexs/decompiler/flash/action/swf5/ActionStoreRegister.java +++ b/trunk/src/com/jpexs/decompiler/flash/action/swf5/ActionStoreRegister.java @@ -103,6 +103,7 @@ public class ActionStoreRegister extends Action { if (stack.peek().equals(obj)) { stack.pop(); stack.push(new PostIncrementTreeItem(this, obj)); + stack.push(obj); return; } }