diff options
author | Max Horn | 2005-01-28 22:10:56 +0000 |
---|---|---|
committer | Max Horn | 2005-01-28 22:10:56 +0000 |
commit | 577b04aaade063db87ce93649de77ce2fe795fcf (patch) | |
tree | 1dbcd12f3138c8d8553b0e091ba740e2a7e794e8 /sword2/driver | |
parent | abd12dd1b63d9e680bdc157fd5aa1fdb579e111e (diff) | |
download | scummvm-rg350-577b04aaade063db87ce93649de77ce2fe795fcf.tar.gz scummvm-rg350-577b04aaade063db87ce93649de77ce2fe795fcf.tar.bz2 scummvm-rg350-577b04aaade063db87ce93649de77ce2fe795fcf.zip |
Fix compilation with mpeg2 disabled
svn-id: r16680
Diffstat (limited to 'sword2/driver')
-rw-r--r-- | sword2/driver/animation.cpp | 2 |
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); |