From ecb0649b81661e6c4f74c513b2c39839931e78df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Wed, 8 Jul 2015 06:05:30 +0200 Subject: [PATCH] =?UTF-8?q?AS1/2=20unresolved=20constant=20as=20=C2=A7?= =?UTF-8?q?=C2=A7=20instruction?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/com/jpexs/decompiler/flash/action/swf4/ActionPush.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/swf4/ActionPush.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/swf4/ActionPush.java index 5b7b656da..40d498120 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/swf4/ActionPush.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/swf4/ActionPush.java @@ -345,7 +345,7 @@ public class ActionPush extends Action { } if (o instanceof ConstantIndex) { if ((constantPool == null) || (((ConstantIndex) o).index >= constantPool.size())) { - o = "CONSTANT" + ((ConstantIndex) o).index; + o = "§§constant" + ((ConstantIndex) o).index; } else { o = constantPool.get(((ConstantIndex) o).index); }