diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-08-16 23:33:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-08-16 23:33:22 +0100 |
| commit | b1a47060818175bf222da2ab11f7caec73f5a70c (patch) | |
| tree | 7716e276ce79a49994a129e94669393fcc31f9a8 /src | |
| parent | ff75febaebe52a25483a5dca9001cc667346460e (diff) | |
| parent | 19f7e6df95f213d3243e86b85c419da00f2b7c25 (diff) | |
Merge branch 'master' of ssh://git.carlh.net/home/carl/git/libdcp
Diffstat (limited to 'src')
| -rw-r--r-- | src/reel.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/reel.cc b/src/reel.cc index a159ce74..f8f1acb0 100644 --- a/src/reel.cc +++ b/src/reel.cc @@ -140,7 +140,7 @@ bool Reel::equals (boost::shared_ptr<const Reel> other, EqualityOptions opt, NoteHandler note) const { if ((_main_picture && !other->_main_picture) || (!_main_picture && other->_main_picture)) { - note (DCP_ERROR, "Reel: assets differ"); + note (DCP_ERROR, "Reel: picture assets differ"); return false; } @@ -149,7 +149,7 @@ Reel::equals (boost::shared_ptr<const Reel> other, EqualityOptions opt, NoteHand } if ((_main_sound && !other->_main_sound) || (!_main_sound && other->_main_sound)) { - note (DCP_ERROR, "Reel: assets differ"); + note (DCP_ERROR, "Reel: sound assets differ"); return false; } @@ -158,7 +158,7 @@ Reel::equals (boost::shared_ptr<const Reel> other, EqualityOptions opt, NoteHand } if ((_main_subtitle && !other->_main_subtitle) || (!_main_subtitle && other->_main_subtitle)) { - note (DCP_ERROR, "Reel: assets differ"); + note (DCP_ERROR, "Reel: subtitle assets differ"); return false; } @@ -171,7 +171,7 @@ Reel::equals (boost::shared_ptr<const Reel> other, EqualityOptions opt, NoteHand } if ((_atmos && !other->_atmos) || (!_atmos && other->_atmos)) { - note (DCP_ERROR, "Reel: assets differ"); + note (DCP_ERROR, "Reel: atmos assets differ"); return false; } |
