Browse Source

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

tags/non-daw-v1.1.0
Jonathan Moore Liles 15 years ago
parent
commit
a7902200e8
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mixer/src/JACK_Module.C

+ 2
- 2
mixer/src/JACK_Module.C 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 );


Loading…
Cancel
Save