Removed un-needed file and added SoundManager fix.

This commit is contained in:
Richard Davey
2013-05-02 05:16:16 +01:00
parent e39073d07b
commit 0a08e1ae0e
4 changed files with 4 additions and 76 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ module Phaser {
var tempSound: Sound = new Sound(this._context, this._gainNode, null, volume, loop);
// this is an async process, so we can return the Sound object anyway, it just won't be playing yet
this.decode(key, () => this.play(key), tempSound);
this.decode(key, () => tempSound.play(), tempSound);
return tempSound;
}
+1 -1
View File
@@ -54,7 +54,7 @@ module Phaser {
this._buffer = data;
this.isDecoding = false;
this.play();
//this.play();
}