From 287038e2a6f3283fb7f6941e46f2ec0aae1a7178 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Mon, 15 Feb 2021 07:10:05 +0100 Subject: [PATCH] DoInitAction to string has spriteId (#initclip) --- .../jpexs/decompiler/flash/tags/DoInitActionTag.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DoInitActionTag.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DoInitActionTag.java index d6859a7e7..ffad20389 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DoInitActionTag.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DoInitActionTag.java @@ -12,7 +12,8 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library. */ + * License along with this library. + */ package com.jpexs.decompiler.flash.tags; import com.jpexs.decompiler.flash.DisassemblyListener; @@ -258,4 +259,11 @@ public class DoInitActionTag extends Tag implements CharacterIdTag, ASMSource { public void setSourceTag(Tag t) { //nothing } + + @Override + public String toString() { + return getName() + " (" + spriteId + ")"; + } + + }