diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-06-20 22:47:17 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-06-20 22:47:17 +0100 |
| commit | 23a1a0395b31c4dc36d65531d02b7df240a25dce (patch) | |
| tree | ef0d51564a51eefee596799c42c59cbebbdb507b /src | |
| parent | 6f1af34ae95586281f1632ceb87cc95784ccff28 (diff) | |
Accept V4+ styles as well as V4 ones in SSA.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ssa_reader.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ssa_reader.cc b/src/ssa_reader.cc index eb85dea..93e96f2 100644 --- a/src/ssa_reader.cc +++ b/src/ssa_reader.cc @@ -312,7 +312,7 @@ SSAReader::read (function<optional<string> ()> get_line) /* Section heading */ if (line.get() == "[Script Info]") { part = INFO; - } else if (line.get() == "[V4 Styles]") { + } else if (line.get() == "[V4 Styles]" || line.get() == "[V4+ Styles]") { part = STYLES; } else if (line.get() == "[Events]") { part = EVENTS; |
