Use 8 audio IO in main variant
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
1314aeebb5
commit
026cde3807
4 changed files with 8 additions and 7 deletions
|
|
@ -30,8 +30,8 @@
|
|||
#define DISTRHO_UI_USE_NANOVG 1
|
||||
#define DISTRHO_UI_USER_RESIZABLE 1
|
||||
#endif
|
||||
#define DISTRHO_PLUGIN_NUM_INPUTS 12
|
||||
#define DISTRHO_PLUGIN_NUM_OUTPUTS 12
|
||||
#define DISTRHO_PLUGIN_NUM_INPUTS 18
|
||||
#define DISTRHO_PLUGIN_NUM_OUTPUTS 18
|
||||
#define DISTRHO_PLUGIN_WANT_MIDI_INPUT 1
|
||||
#define DISTRHO_PLUGIN_WANT_MIDI_OUTPUT 1
|
||||
#define DISTRHO_PLUGIN_WANT_FULL_STATE 1
|
||||
|
|
|
|||
|
|
@ -604,10 +604,10 @@ protected:
|
|||
|
||||
void initAudioPort(const bool input, uint32_t index, AudioPort& port) override
|
||||
{
|
||||
if (index >= 2)
|
||||
if (index >= 8)
|
||||
{
|
||||
port.hints = kAudioPortIsCV | kCVPortHasPositiveUnipolarRange | kCVPortHasScaledRange;
|
||||
index -= 2;
|
||||
index -= 8;
|
||||
}
|
||||
|
||||
CardinalBasePlugin::initAudioPort(input, index, port);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue