Return the play value here as well

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@853 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Mark Johnson
2009-08-25 23:49:37 +00:00
parent dc2cbcf8f7
commit e5212d48bf
+2 -2
View File
@@ -245,9 +245,9 @@ public class Sound
* *
* @param loop whether or not to loop the sampe until {@link #stop}ped. * @param loop whether or not to loop the sampe until {@link #stop}ped.
*/ */
public void play (StartObserver obs, boolean loop) public boolean play (StartObserver obs, boolean loop)
{ {
play(true, loop, obs); return play(true, loop, obs);
} }
/** /**