diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-10-19 21:49:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-19 21:49:40 +0100 |
| commit | b5362c8fe1244506e05d18c93026150886171b8f (patch) | |
| tree | 3b6c1efe89beeb17ff81d17bb59265fbc45f1175 /src/lib/playlist.cc | |
| parent | 74417f75e11fd5b0bc152917e7661bf962957c60 (diff) | |
Fix by-video-content reel split when there is content after the last video content.
Diffstat (limited to 'src/lib/playlist.cc')
| -rw-r--r-- | src/lib/playlist.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/playlist.cc b/src/lib/playlist.cc index 6e1d34572..c9de9b88f 100644 --- a/src/lib/playlist.cc +++ b/src/lib/playlist.cc @@ -351,7 +351,7 @@ ContentSorter::operator() (shared_ptr<Content> a, shared_ptr<Content> b) return a->position() < b->position(); } -/** @return content in an undefined order */ +/** @return content in ascending order of position */ ContentList Playlist::content () const { |
