From 19f7e6df95f213d3243e86b85c419da00f2b7c25 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 31 Jul 2018 23:04:35 +0100 Subject: Tweak equals messages. --- src/reel.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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 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 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 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 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; } -- cgit v1.2.3