From cb49cbdd456a97c6e10bdc279624603bd9bd7b60 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 3 Feb 2007 19:05:53 +0000 Subject: * Reimplemented Mixer::pauseAll to simply invoke pause on all channels (implying change of semantics) * Reordered the params of Mixer::playRaw (the SoundType now comes first, not last) * Removed Mixer::isPaused * Removed Mixer::getSoundElapsedTimeOfSoundID * Added some doxygen comments to the Mixer svn-id: r25356 --- engines/queen/sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/queen/sound.cpp') diff --git a/engines/queen/sound.cpp b/engines/queen/sound.cpp index 6cea53f1c1..b416bb953c 100644 --- a/engines/queen/sound.cpp +++ b/engines/queen/sound.cpp @@ -198,7 +198,7 @@ void SBSound::playSoundData(Common::File *f, uint32 size, Audio::SoundHandle *so if (sound) { f->read(sound, size); byte flags = Audio::Mixer::FLAG_UNSIGNED | Audio::Mixer::FLAG_AUTOFREE; - _mixer->playRaw(soundHandle, sound, size, 11025, flags); + _mixer->playRaw(Audio::Mixer::kSFXSoundType, soundHandle, sound, size, 11025, flags); } } -- cgit v1.2.3