diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-15 21:01:20 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-15 21:01:20 +0000 |
| commit | dfb2ce035c4cb87152d5404686083416fba2048c (patch) | |
| tree | 3e126ec84a4746e5acaa6ba9f55794e13f5761f2 | |
| parent | 69f25e496ba409c02aa27b1e07dfcde34c86a32b (diff) | |
Remove confusing unnamed-channel label.
| -rw-r--r-- | src/lib/film.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 6c0b4d5a5..e14d3a488 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -1271,8 +1271,8 @@ Film::audio_output_names () const n.push_back (_("BsR")); n.push_back (_("DBP")); n.push_back (_("DBS")); - n.push_back (_("NC")); - n.push_back (_("NC")); + n.push_back (""); + n.push_back (""); return vector<string> (n.begin(), n.begin() + audio_channels ()); } |
