Skip to content

Commit

Permalink
fixed #11, #61, AdamAtomic#170, AdamAtomic#221 AutoDestroy parameter …
Browse files Browse the repository at this point in the history
…in FlxSound loadEmbedded and loadStream does nothing
  • Loading branch information
moly committed Sep 15, 2012
1 parent dde536b commit 9f93933
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions org/flixel/FlxSound.as
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ package org.flixel
_sound = new EmbeddedSound();
//NOTE: can't pull ID3 info from embedded sound currently
_looped = Looped;
autoDestroy = AutoDestroy;
updateTransform();
exists = true;
return this;
Expand All @@ -279,6 +280,7 @@ package org.flixel
_sound.addEventListener(Event.ID3, gotID3);
_sound.load(new URLRequest(SoundURL));
_looped = Looped;
autoDestroy = AutoDestroy;
updateTransform();
exists = true;
return this;
Expand Down

0 comments on commit 9f93933

Please sign in to comment.