DoInitAction to string has spriteId (#initclip)

This commit is contained in:
Jindra Petřík
2021-02-15 07:10:05 +01:00
parent 91b32a623b
commit 287038e2a6

View File

@@ -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 + ")";
}
}