aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.cpp
diff options
context:
space:
mode:
authorMax Horn2003-12-21 15:47:52 +0000
committerMax Horn2003-12-21 15:47:52 +0000
commite439eb51290082f204c10feaea2d5a72e3747879 (patch)
tree9a1309f9bce0d711f2369039b447d7ba705b1bc3 /scumm/sound.cpp
parentf19f73eb5069b4f092714535e77efc0d6881c612 (diff)
downloadscummvm-rg350-e439eb51290082f204c10feaea2d5a72e3747879.tar.gz
scummvm-rg350-e439eb51290082f204c10feaea2d5a72e3747879.tar.bz2
scummvm-rg350-e439eb51290082f204c10feaea2d5a72e3747879.zip
added convenience SoundMixer::playVorbis variant which calls through to playSfxSound_Vorbis; made scumm/queen engines use it
svn-id: r11812
Diffstat (limited to 'scumm/sound.cpp')
-rw-r--r--scumm/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index 9da499b67e..046f43da20 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -848,7 +848,7 @@ void Sound::startSfxSound(File *file, int file_size, PlayingSoundHandle *handle)
if (file_size > 0) {
if (_vorbis_mode) {
#ifdef USE_VORBIS
- playSfxSound_Vorbis(_scumm->_mixer, file, file_size, handle);
+ _scumm->_mixer->playVorbis(handle, file, file_size);
#endif
} else {
#ifdef USE_MAD