From 2531fd58737b1e02b32f496ac891e5a96bf95828 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Thu, 18 May 2006 21:46:07 +0000 Subject: Added player for the Kyra 3 VQA cutscenes, based on my earlier prototype. It could use some cleanup, and there are a couple of TODOs sprinkled throughout the code, but it seems to work reasonably well. Until the Kyra 3 main menu is implemented, it won't actually be used though. It uses the appendable audio stream class, which I have moved out of the SCUMM engine. svn-id: r22526 --- engines/scumm/smush/smush_mixer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/scumm/smush/smush_mixer.cpp') diff --git a/engines/scumm/smush/smush_mixer.cpp b/engines/scumm/smush/smush_mixer.cpp index a7b8fb9b27..b5002609df 100644 --- a/engines/scumm/smush/smush_mixer.cpp +++ b/engines/scumm/smush/smush_mixer.cpp @@ -129,7 +129,7 @@ bool SmushMixer::handleFrame() { if (_mixer->isReady()) { if (!_channels[i].stream) { - _channels[i].stream = makeAppendableAudioStream(rate, flags, 500000); + _channels[i].stream = Audio::makeAppendableAudioStream(rate, flags, 500000); _mixer->playInputStream(Audio::Mixer::kSFXSoundType, &_channels[i].handle, _channels[i].stream); } _mixer->setChannelVolume(_channels[i].handle, vol); -- cgit v1.2.3