diff options
-rw-r--r-- | engines/toltecs/movie.cpp | 2 | ||||
-rw-r--r-- | engines/toltecs/sound.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/toltecs/movie.cpp b/engines/toltecs/movie.cpp index 2fd0d186c9..d5839cbcd3 100644 --- a/engines/toltecs/movie.cpp +++ b/engines/toltecs/movie.cpp @@ -81,7 +81,7 @@ void MoviePlayer::playMovie(uint resIndex) { _audioStream = Audio::makeQueuingAudioStream(22050, false); - _vm->_mixer->playInputStream(Audio::Mixer::kPlainSoundType, &_audioStreamHandle, _audioStream); + _vm->_mixer->playStream(Audio::Mixer::kPlainSoundType, &_audioStreamHandle, _audioStream); _soundChunkFramesLeft = 0; _lastPrefetchOfs = 0; diff --git a/engines/toltecs/sound.cpp b/engines/toltecs/sound.cpp index 7be5dba9d6..d015720004 100644 --- a/engines/toltecs/sound.cpp +++ b/engines/toltecs/sound.cpp @@ -161,7 +161,7 @@ void Sound::internalPlaySound(int16 resIndex, int16 type, int16 volume, int16 pa } */ - _vm->_mixer->playInputStream(soundType, &channels[freeChannel].handle, + _vm->_mixer->playStream(soundType, &channels[freeChannel].handle, stream, -1, volume, panning); } |