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); }