aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2005-01-28 22:10:56 +0000
committerMax Horn2005-01-28 22:10:56 +0000
commit577b04aaade063db87ce93649de77ce2fe795fcf (patch)
tree1dbcd12f3138c8d8553b0e091ba740e2a7e794e8
parentabd12dd1b63d9e680bdc157fd5aa1fdb579e111e (diff)
downloadscummvm-rg350-577b04aaade063db87ce93649de77ce2fe795fcf.tar.gz
scummvm-rg350-577b04aaade063db87ce93649de77ce2fe795fcf.tar.bz2
scummvm-rg350-577b04aaade063db87ce93649de77ce2fe795fcf.zip
Fix compilation with mpeg2 disabled
svn-id: r16680
-rw-r--r--sword2/driver/animation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sword2/driver/animation.cpp b/sword2/driver/animation.cpp
index ae1d6cc8ef..d6d58e856d 100644
--- a/sword2/driver/animation.cpp
+++ b/sword2/driver/animation.cpp
@@ -204,7 +204,7 @@ int32 MoviePlayer::play(const char *filename, MovieTextObject *text[], int32 lea
playMPEG(filename, text, leadOut, leadOutLen);
#else
// No MPEG2? Use the old 'Narration Only' hack
- playDummy(filename, text, leadOut);
+ playDummy(filename, text, leadOut, leadOutLen);
#endif
_vm->_mixer->stopHandle(leadInHandle);