Browse Source

subtitles: Fix "any subtitle" detection.

pull/2/head
Hugo Beauzée-Luyssen 15 years ago
parent
commit
2ae88e927c
  1. 2
      src/input/subtitles.c

2
src/input/subtitles.c

@ -358,7 +358,7 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path,
}
}
else if( i_prio == SUB_PRIORITY_NONE &&
j == 0 )
j == -1 )
{
/* doesn't contain the movie name, prefer files in f_dir over subdirs */
i_prio = SUB_PRIORITY_MATCH_NONE;

Loading…
Cancel
Save