diff options
author | jmarshallnz <jcmarsha@gmail.com> | 2014-05-05 10:33:52 +1200 |
---|---|---|
committer | Jonathan Marshall <jmarshall@never.you.mind> | 2014-05-05 10:36:52 +1200 |
commit | f42f5b58d8fb9622bd0e8b02264034a2d9907a60 (patch) | |
tree | 75cb524550fe6b2e18ce0c4dcf206382759ee741 | |
parent | 67e759e80b755e83e80507b1b6ac31ee7e82bf0b (diff) |
Merge pull request #4650 from FernetMenta/paplayer
paplayer: fix accidently disabled seek by fc2b1b2
-rw-r--r-- | xbmc/cores/paplayer/DVDPlayerCodec.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xbmc/cores/paplayer/DVDPlayerCodec.cpp b/xbmc/cores/paplayer/DVDPlayerCodec.cpp index 411d6bf15a..441bcd8023 100644 --- a/xbmc/cores/paplayer/DVDPlayerCodec.cpp +++ b/xbmc/cores/paplayer/DVDPlayerCodec.cpp @@ -203,6 +203,7 @@ bool DVDPlayerCodec::Init(const CStdString &strFile, unsigned int filecache) { // rewind stream to beginning Seek(0); + m_bCanSeek = true; } else { |