# HG changeset patch # User reimar # Date 1309686378 0 # Node ID f4264c071f4f1788003f5d54df40555521829c52 # Parent 5fda3578d1c542af4de320c83b0e145f8183c577 Remove condition that is now always true. diff -r 5fda3578d1c5 -r f4264c071f4f stream/cache2.c --- a/stream/cache2.c Sun Jul 03 09:45:29 2011 +0000 +++ b/stream/cache2.c Sun Jul 03 09:46:18 2011 +0000 @@ -636,8 +636,7 @@ case STREAM_CTRL_SEEK_TO_CHAPTER: case STREAM_CTRL_SEEK_TO_TIME: case STREAM_CTRL_SET_ANGLE: - if (s->control_res != STREAM_UNSUPPORTED) - stream->pos = s->read_filepos = s->control_new_pos; + stream->pos = s->read_filepos = s->control_new_pos; break; } return s->control_res;