diff options
author | Matthew Hoops | 2012-08-13 16:23:47 -0400 |
---|---|---|
committer | Matthew Hoops | 2012-08-13 16:25:03 -0400 |
commit | 92432a136bff7c327b5328cc10a84198f571b0d0 (patch) | |
tree | 10a5a48dfe84256915ef2b23a33f0689e1d67516 /engines | |
parent | 7831225b280d08779bc0d40e76bbbef1e183471a (diff) | |
download | scummvm-rg350-92432a136bff7c327b5328cc10a84198f571b0d0.tar.gz scummvm-rg350-92432a136bff7c327b5328cc10a84198f571b0d0.tar.bz2 scummvm-rg350-92432a136bff7c327b5328cc10a84198f571b0d0.zip |
VIDEO: Convert TheoraDecoder to the new AdvancedVideoDecoder API
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sword25/fmv/movieplayer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sword25/fmv/movieplayer.cpp b/engines/sword25/fmv/movieplayer.cpp index 9ee13b4b6d..a95532ec65 100644 --- a/engines/sword25/fmv/movieplayer.cpp +++ b/engines/sword25/fmv/movieplayer.cpp @@ -61,6 +61,7 @@ bool MoviePlayer::loadMovie(const Common::String &filename, uint z) { // Get the file and load it into the decoder Common::SeekableReadStream *in = Kernel::getInstance()->getPackage()->getStream(filename); _decoder.loadStream(in); + _decoder.start(); GraphicEngine *pGfx = Kernel::getInstance()->getGfx(); |