command line remove fix, show tag number in dumpSWF

This commit is contained in:
honfika@gmail.com
2015-07-11 13:27:44 +02:00
parent e9b74200ad
commit 8f8db771e8
2 changed files with 7 additions and 4 deletions

View File

@@ -2024,7 +2024,7 @@ public class CommandLineArgumentParser {
Collections.sort(tagNumbersToRemove);
for (int i = tagNumbersToRemove.size() - 1; i >= 0; i--) {
swf.tags.remove(tagNumbersToRemove.get(i));
swf.tags.remove((int) tagNumbersToRemove.get(i));
}
try {