diff options
-rw-r--r-- | engines/wintermute/video/video_theora_player.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/wintermute/video/video_theora_player.cpp b/engines/wintermute/video/video_theora_player.cpp index fc1571054c..205ebe5035 100644 --- a/engines/wintermute/video/video_theora_player.cpp +++ b/engines/wintermute/video/video_theora_player.cpp @@ -129,6 +129,10 @@ bool VideoTheoraPlayer::initialize(const Common::String &filename, const Common: warning("VideoTheoraPlayer::initialize - Theora support not compiled in, video will be skipped: %s", filename.c_str()); return STATUS_FAILED; #endif + + + _subtitler->LoadSubtitles(_filename.c_str(), subtitleFile.c_str()); + _theoraDecoder->loadStream(_file); if (!_theoraDecoder->isVideoLoaded()) { |