diff options
| author | phintuka <phintuka> | 2011-06-13 18:02:05 +0000 |
|---|---|---|
| committer | phintuka <phintuka> | 2011-06-13 18:02:05 +0000 |
| commit | 6bc7ec6ebcbd68fc5f37d8c70e668ab93d88de66 (patch) | |
| tree | ca4ad0a372a7914b4579973daacb1b1925ad5d55 | |
| parent | 8e63a9a54acc5fd78625727c13d66302253c1f10 (diff) | |
| download | xineliboutput-6bc7ec6ebcbd68fc5f37d8c70e668ab93d88de66.tar.gz xineliboutput-6bc7ec6ebcbd68fc5f37d8c70e668ab93d88de66.tar.bz2 | |
Fixed seeking when using BD menus
| -rw-r--r-- | xine/BluRay/input_bluray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xine/BluRay/input_bluray.c b/xine/BluRay/input_bluray.c index 7e83d936..d3321728 100644 --- a/xine/BluRay/input_bluray.c +++ b/xine/BluRay/input_bluray.c @@ -824,7 +824,7 @@ static off_t bluray_plugin_seek (input_plugin_t *this_gen, off_t offset, int ori if (!this || !this->bdh) return -1; - if (this->current_title_idx < 0 || this->still_end_time) + if (this->still_end_time) return offset; /* convert relative seeks to absolute */ |
