diff options
Diffstat (limited to 'engines/touche/resource.cpp')
-rw-r--r-- | engines/touche/resource.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/touche/resource.cpp b/engines/touche/resource.cpp index 6e0b0220b7..8a810f09d8 100644 --- a/engines/touche/resource.cpp +++ b/engines/touche/resource.cpp @@ -590,7 +590,7 @@ void ToucheEngine::res_loadSound(int priority, int num) { _fData.seek(offs); Audio::AudioStream *stream = Audio::makeVOCStream(&_fData, Audio::FLAG_UNSIGNED); if (stream) { - _mixer->playInputStream(Audio::Mixer::kSFXSoundType, &_sfxHandle, stream); + _mixer->playStream(Audio::Mixer::kSFXSoundType, &_sfxHandle, stream); } } } @@ -672,7 +672,7 @@ void ToucheEngine::res_loadSpeechSegment(int num) { } if (stream) { _speechPlaying = true; - _mixer->playInputStream(Audio::Mixer::kSpeechSoundType, &_speechHandle, stream); + _mixer->playStream(Audio::Mixer::kSpeechSoundType, &_speechHandle, stream); } } } |