text tag rendering fix

This commit is contained in:
Honfika
2014-02-23 23:41:32 +01:00
parent cd92cad907
commit a64504d610
11 changed files with 24 additions and 19 deletions
@@ -2130,7 +2130,7 @@ public final class SWF implements TreeItem {
}
public static SerializableImage frameToImage(int containerId, int frame, List<Tag> allTags, List<Tag> controlTags, RECT displayRect, int totalFrameCount, Stack<Integer> visited, Matrix transformation) {
String key = "frame_" + frame + "_" + containerId;
String key = "frame_" + frame + "_" + containerId + "_" + allTags.get(0).getSwf().hashCode();
if (frameCache.contains(key)) {
SerializableImage ciret = ((SerializableImage) frameCache.get(key));
return ciret;