Mixer: Raise (arbitrary) maximum number of channels of JACK module from 6 to 16.

pull/3/head
Jonathan Moore Liles 2010-02-27 12:38:45 -06:00
parent 0f0933f6d0
commit a7902200e8
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ JACK_Module::JACK_Module ( )
Port p( this, Port::INPUT, Port::CONTROL, "Inputs" );
p.hints.type = Port::Hints::INTEGER;
p.hints.minimum = 0;
p.hints.maximum = 6;
p.hints.maximum = 16;
p.hints.ranged = true;
p.connect_to( new float );
@ -53,7 +53,7 @@ JACK_Module::JACK_Module ( )
Port p( this, Port::INPUT, Port::CONTROL, "Outputs" );
p.hints.type = Port::Hints::INTEGER;
p.hints.minimum = 0;
p.hints.maximum = 6;
p.hints.maximum = 16;
p.hints.ranged = true;
p.connect_to( new float );