aboutsummaryrefslogtreecommitdiff
path: root/engines/sword1
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/sword1
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/sword1')
-rw-r--r--engines/sword1/animation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword1/animation.cpp b/engines/sword1/animation.cpp
index 80e8573c44..706bee4b92 100644
--- a/engines/sword1/animation.cpp
+++ b/engines/sword1/animation.cpp
@@ -87,7 +87,7 @@ bool MoviePlayer::load(uint32 id) {
char filename[20];
if (_decoderType == kVideoDecoderDXA) {
- _bgSoundStream = Audio::AudioStream::openStreamFile(sequenceList[id]);
+ _bgSoundStream = Audio::SeekableAudioStream::openStreamFile(sequenceList[id]);
} else {
_bgSoundStream = NULL;
}