aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/he/cup_player_he.cpp
diff options
context:
space:
mode:
authorMax Horn2007-03-02 15:34:22 +0000
committerMax Horn2007-03-02 15:34:22 +0000
commitcfe86c096d6b4823f9489f2fedc928163b0b4c09 (patch)
tree8512869a0fba7d49dacf124cb38880f2b2e3edc7 /engines/scumm/he/cup_player_he.cpp
parent029b8c43238ab363bcc1c518b3c4de312b240ae1 (diff)
downloadscummvm-rg350-cfe86c096d6b4823f9489f2fedc928163b0b4c09.tar.gz
scummvm-rg350-cfe86c096d6b4823f9489f2fedc928163b0b4c09.tar.bz2
scummvm-rg350-cfe86c096d6b4823f9489f2fedc928163b0b4c09.zip
cleanup
svn-id: r25927
Diffstat (limited to 'engines/scumm/he/cup_player_he.cpp')
-rw-r--r--engines/scumm/he/cup_player_he.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/scumm/he/cup_player_he.cpp b/engines/scumm/he/cup_player_he.cpp
index d0691e3869..6b1d31a435 100644
--- a/engines/scumm/he/cup_player_he.cpp
+++ b/engines/scumm/he/cup_player_he.cpp
@@ -22,6 +22,7 @@
#include "common/stdafx.h"
#include "common/system.h"
+#include "sound/audiostream.h"
#include "sound/mixer.h"
#include "scumm/scumm.h"
#include "scumm/util.h"
@@ -170,7 +171,8 @@ void CUP_Player::updateSfx() {
flags |= Audio::Mixer::FLAG_LOOP;
loopEnd = soundSize - 8;
}
- _mixer->playRaw(Audio::Mixer::kSFXSoundType, &sfxChannel->handle, soundData + 8, soundSize - 8, 11025, flags, -1, 255, 0, 0, loopEnd);
+ _mixer->playInputStream(Audio::Mixer::kSFXSoundType, &sfxChannel->handle,
+ Audio::makeLinearInputStream(soundData + 8, soundSize - 8, 11025, flags, 0, loopEnd));
}
} else {
warning("Unable to find a free channel to play sound %d", sfx->num);