From 247bf757ebe80f22487faf58c68ce89552738b44 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Thu, 14 Jun 2007 00:50:37 +0000 Subject: [PATCH] Scratch that, reverse it. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@260 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/as/com/threerings/flash/MediaContainer.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/as/com/threerings/flash/MediaContainer.as b/src/as/com/threerings/flash/MediaContainer.as index 2931c9a5..e4595588 100644 --- a/src/as/com/threerings/flash/MediaContainer.as +++ b/src/as/com/threerings/flash/MediaContainer.as @@ -212,7 +212,7 @@ public class MediaContainer extends Sprite // create a mask to prevent the media from drawing out of bounds if (getMaxContentWidth() < int.MAX_VALUE && getMaxContentHeight() < int.MAX_VALUE) { - configureMask(url, getMaxContentWidth(), getMaxContentHeight()); + configureMask(getMaxContentWidth(), getMaxContentHeight()); } // start it loading, add it as a child @@ -542,7 +542,7 @@ public class MediaContainer extends Sprite /** * Configure the mask for this object. */ - protected function configureMask (url :String, ww :int, hh :int) :void + protected function configureMask (ww :int, hh :int) :void { var mask :Shape; if (_media.mask != null) {