mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
TOLTECS: Fixed compilation with current SVN changes
This commit is contained in:
parent
34eb899b25
commit
7f78f62467
@ -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;
|
||||
|
@ -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);
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user