aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes/UAudioPlayback_Portaudio.pas
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-01-11 03:27:40 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-01-11 03:27:40 +0000
commitc1a89635c888f21203db62021cb30333d5d80a47 (patch)
treec12a66edd9cf937aec834ae84b2f5469f9c7de2e /Game/Code/Classes/UAudioPlayback_Portaudio.pas
parent9ddb8c2b7c851d82922342ee8873267f0f1ae310 (diff)
downloadusdx-c1a89635c888f21203db62021cb30333d5d80a47.tar.gz
usdx-c1a89635c888f21203db62021cb30333d5d80a47.tar.xz
usdx-c1a89635c888f21203db62021cb30333d5d80a47.zip
some minor changes
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@780 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--Game/Code/Classes/UAudioPlayback_Portaudio.pas6
1 files changed, 5 insertions, 1 deletions
diff --git a/Game/Code/Classes/UAudioPlayback_Portaudio.pas b/Game/Code/Classes/UAudioPlayback_Portaudio.pas
index c1abd0eb..5f4a8cde 100644
--- a/Game/Code/Classes/UAudioPlayback_Portaudio.pas
+++ b/Game/Code/Classes/UAudioPlayback_Portaudio.pas
@@ -226,7 +226,7 @@ begin
decodeStream.Position := 0;
end;
status := sPlaying;
- mixerStream.AddStream(Self);
+ //mixerStream.AddStream(Self);
end;
procedure TPortaudioPlaybackStream.Pause();
@@ -444,6 +444,8 @@ var
begin
decodeStream := AudioDecoder.Open(Filename);
MusicStream := TPortaudioPlaybackStream.Create(decodeStream);
+ // FIXME: remove this line
+ mixerStream.AddStream(MusicStream);
if(MusicStream.IsLoaded()) then
begin
@@ -619,6 +621,8 @@ begin
end;
playbackStream := TPortaudioPlaybackStream.Create(decodeStream);
+ // FIXME: remove this line
+ mixerStream.AddStream(playbackStream);
//Add CustomSound
csIndex := High(CustomSounds) + 1;