diff options
author | Matthew Hoops | 2015-06-05 22:49:03 -0400 |
---|---|---|
committer | Matthew Hoops | 2015-06-06 17:20:41 -0400 |
commit | b6fdc7be888034eb67e7b667a8d362105067a7ca (patch) | |
tree | 469f6a0c3c4c380ebeedf753a6554c7baa2f4c11 /engines/bbvs | |
parent | 7eb663a45b7c6f1ae65ce118fe059c6e4b62f1a8 (diff) | |
download | scummvm-rg350-b6fdc7be888034eb67e7b667a8d362105067a7ca.tar.gz scummvm-rg350-b6fdc7be888034eb67e7b667a8d362105067a7ca.tar.bz2 scummvm-rg350-b6fdc7be888034eb67e7b667a8d362105067a7ca.zip |
AUDIO: Make makeAIFFStream return a RewindableAudioStream
All callers requiring SeekableAudioStream have been adapted by using dynamic_cast
Diffstat (limited to 'engines/bbvs')
-rw-r--r-- | engines/bbvs/sound.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/bbvs/sound.h b/engines/bbvs/sound.h index 4e44c2b962..4d3253c48e 100644 --- a/engines/bbvs/sound.h +++ b/engines/bbvs/sound.h @@ -38,7 +38,7 @@ public: void stop(); bool isPlaying(); protected: - Audio::SeekableAudioStream *_stream; + Audio::RewindableAudioStream *_stream; Audio::SoundHandle _handle; // Keep the filename for debugging purposes Common::String _filename; |