diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-06-12 10:45:38 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-06-12 10:45:38 +0100 |
| commit | 4be68e872210db9536ce1997d7fcba1e285765b8 (patch) | |
| tree | f6393a1a00d4323b2300c0ac92ee24b312fb25c0 /src | |
| parent | 5a080240dc2828b75fef1b4579ee74d0966f9b4d (diff) | |
Incorporate Film::_with_subtitles in the Film::video_identifier
Reported-by: Matthias Damm
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/film.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 5b709ab1c..609003bba 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -184,6 +184,10 @@ Film::video_identifier () const s << "_3D"; } + if (_with_subtitles) { + s << "_WS"; + } + return s.str (); } |
