diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-07-31 23:04:35 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-07-31 23:04:35 +0100 |
| commit | 19f7e6df95f213d3243e86b85c419da00f2b7c25 (patch) | |
| tree | 3739d4923ea658e56cb6877bb38d0840a8a0184e /src | |
| parent | 13a4ee8b1e0d39d94b41e72cc1631dee4f900694 (diff) | |
Tweak equals messages.
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; } |
