unused ratio parameter removed

This commit is contained in:
honfika@gmail.com
2016-02-17 08:02:55 +01:00
parent 253f5392c7
commit 130cddff08
5 changed files with 8 additions and 8 deletions

View File

@@ -2672,7 +2672,7 @@ public final class SWF implements SWFContainerItem, Timelined {
RenderContext renderContext = new RenderContext();
renderContext.cursorPosition = cursorPosition;
renderContext.mouseButton = mouseButton;
timeline.toImage(frame, time, 0, renderContext, image, false, m, absoluteTransformation, colorTransform);
timeline.toImage(frame, time, renderContext, image, false, m, absoluteTransformation, colorTransform);
return image;
}