From e25a445e219bf25245aa586938a810121af93e1d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 24 Dec 2015 00:30:15 +0000 Subject: [PATCH] Remove hints about odd and zero channel counts as they can no longer be set up in the GUI. --- src/wx/hints_dialog.cc | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/wx/hints_dialog.cc b/src/wx/hints_dialog.cc index 00024fabe..2cf109e55 100644 --- a/src/wx/hints_dialog.cc +++ b/src/wx/hints_dialog.cc @@ -96,19 +96,10 @@ HintsDialog::film_changed () _text->WriteText (_("You have specified a font file which is larger than 640kB. This is very likely to cause problems on playback.")); } - if (film->audio_channels() % 2) { - hint = true; - _text->WriteText (_("Your DCP has an odd number of audio channels. This is very likely to cause problems on playback.")); - _text->Newline (); - } else if (film->audio_channels() < 6) { + if (film->audio_channels() < 6) { hint = true; _text->WriteText (_("Your DCP has fewer than 6 audio channels. This may cause problems on some projectors.")); _text->Newline (); - } else if (film->audio_channels() == 0) { - /* Carsten Kurz reckons having no audio can be a problem */ - hint = true; - _text->WriteText (_("Your DCP has no audio channels. This is likely to cause problems on playback.")); - _text->Newline (); } int flat_or_narrower = 0; -- 2.30.2