summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-12 22:07:15 +0000
committerCarl Hetherington <cth@carlh.net>2015-11-12 22:07:15 +0000
commita9936a35fbae63311b1132e6283bf28db1d8c233 (patch)
treed5814fbce9525be860966838bf9f0a83e7cf1a2a /src/wx
parentad3e8cff006ccecdb44520f8cc8fd1eaa8daf755 (diff)
Extend maximum DCP audio channels to 16.
Diffstat (limited to 'src/wx')
-rw-r--r--src/wx/dcp_panel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc
index bd83a7a47..10df6bbce 100644
--- a/src/wx/dcp_panel.cc
+++ b/src/wx/dcp_panel.cc
@@ -697,7 +697,7 @@ void
DCPPanel::setup_audio_channels_choice ()
{
vector<pair<string, string> > items;
- for (int i = minimum_allowed_audio_channels(); i <= 12; i += 2) {
+ for (int i = minimum_allowed_audio_channels(); i <= 16; i += 2) {
items.push_back (make_pair (dcp::raw_convert<string> (i), dcp::raw_convert<string> (i)));
}