From ee72820b5470bc7d5ab63c7c0c2aba4fd13fff58 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Mon, 17 Nov 2008 05:59:03 +0000 Subject: [PATCH] Ouch, I changed that to 25 a while back while testing, but we want 250. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@710 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/as/com/threerings/flash/media/Mp3AudioPlayer.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/flash/media/Mp3AudioPlayer.as b/src/as/com/threerings/flash/media/Mp3AudioPlayer.as index a7bf3a3f..659389fc 100644 --- a/src/as/com/threerings/flash/media/Mp3AudioPlayer.as +++ b/src/as/com/threerings/flash/media/Mp3AudioPlayer.as @@ -30,7 +30,7 @@ public class Mp3AudioPlayer extends EventDispatcher { _loop = loop; - _positionChecker = new Timer(25); + _positionChecker = new Timer(250); _positionChecker.addEventListener(TimerEvent.TIMER, handlePositionCheck); }