aboutsummaryrefslogtreecommitdiff
path: root/engines/sword2
diff options
context:
space:
mode:
authorJohannes Schickel2010-01-06 15:23:33 +0000
committerJohannes Schickel2010-01-06 15:23:33 +0000
commit84f30344060ef382efa7d86fa8f7e55859e82421 (patch)
tree2b24a5cab8703c8bd6d3a52414ebd324712c5144 /engines/sword2
parent027fe079c946d2fc367bebe15244520b035e8990 (diff)
downloadscummvm-rg350-84f30344060ef382efa7d86fa8f7e55859e82421.tar.gz
scummvm-rg350-84f30344060ef382efa7d86fa8f7e55859e82421.tar.bz2
scummvm-rg350-84f30344060ef382efa7d86fa8f7e55859e82421.zip
- Move openStreamFile from AudioStream to SeekableAudioStream.
- Fix documentation of openStreamFile. svn-id: r47080
Diffstat (limited to 'engines/sword2')
-rw-r--r--engines/sword2/animation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword2/animation.cpp b/engines/sword2/animation.cpp
index 629fc3d8bc..2c4b9e0d98 100644
--- a/engines/sword2/animation.cpp
+++ b/engines/sword2/animation.cpp
@@ -63,7 +63,7 @@ MoviePlayer:: ~MoviePlayer() {
*/
bool MoviePlayer::load(const char *name) {
if (_decoderType == kVideoDecoderDXA) {
- _bgSoundStream = Audio::AudioStream::openStreamFile(name);
+ _bgSoundStream = Audio::SeekableAudioStream::openStreamFile(name);
} else {
_bgSoundStream = NULL;
}