summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-12-24 00:30:15 +0000
committerCarl Hetherington <cth@carlh.net>2015-12-24 00:30:15 +0000
commite25a445e219bf25245aa586938a810121af93e1d (patch)
tree0676c1281c24de89c697f0ed90d963258c366899 /src
parent6e3542ea5621701531b8736496fecde1049ff579 (diff)
Remove hints about odd and zero channel counts as they can no longer be set up in the GUI.
Diffstat (limited to 'src')
-rw-r--r--src/wx/hints_dialog.cc11
1 files changed, 1 insertions, 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;