diff options
author | Max Horn | 2010-01-08 22:06:04 +0000 |
---|---|---|
committer | Max Horn | 2010-01-08 22:06:04 +0000 |
commit | 474d49946f5254bff7ac6a490fcc3b02655fae23 (patch) | |
tree | 127da7f0a99049771e33e60417359fafe9ee77d6 /engines/made | |
parent | 7efba850648777d2d562bfccf2f14868816d6391 (diff) | |
download | scummvm-rg350-474d49946f5254bff7ac6a490fcc3b02655fae23.tar.gz scummvm-rg350-474d49946f5254bff7ac6a490fcc3b02655fae23.tar.bz2 scummvm-rg350-474d49946f5254bff7ac6a490fcc3b02655fae23.zip |
Rename QueuedAudioStream to QueuingAudioStream
svn-id: r47179
Diffstat (limited to 'engines/made')
-rw-r--r-- | engines/made/pmvplayer.cpp | 2 | ||||
-rw-r--r-- | engines/made/pmvplayer.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/made/pmvplayer.cpp b/engines/made/pmvplayer.cpp index c0dad218c0..b0b1f0d70f 100644 --- a/engines/made/pmvplayer.cpp +++ b/engines/made/pmvplayer.cpp @@ -102,7 +102,7 @@ bool PmvPlayer::play(const char *filename) { // TODO: Sound can still be a little choppy. A bug in the decoder or - // perhaps more likely - do we have to implement double buffering to // get it to work well? - _audioStream = Audio::makeQueuedAudioStream(soundFreq, false); + _audioStream = Audio::makeQueuingAudioStream(soundFreq, false); while (!_vm->shouldQuit() && !_aborted && !_fd->eos() && frameNumber < frameCount) { diff --git a/engines/made/pmvplayer.h b/engines/made/pmvplayer.h index bfdda4fa2e..3a5295711d 100644 --- a/engines/made/pmvplayer.h +++ b/engines/made/pmvplayer.h @@ -50,7 +50,7 @@ protected: MadeEngine *_vm; Audio::Mixer *_mixer; Common::File *_fd; - Audio::QueuedAudioStream *_audioStream; + Audio::QueuingAudioStream *_audioStream; Audio::SoundHandle _audioStreamHandle; byte _paletteRGB[768]; Graphics::Surface *_surface; |