Skip to content

Commit

Permalink
Show Sidechain in Cubase (#1394)
Browse files Browse the repository at this point in the history
SideChains in Cubase require the VST3 to show a "kAux" input.
This does that.

Closes #379
  • Loading branch information
baconpaul authored Dec 3, 2019
1 parent dd40433 commit ee3dfe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vst3/SurgeVst3Processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ tresult PLUGIN_API SurgeVst3Processor::initialize(FUnknown* context)

//---create Audio In/Out busses------
// we want a stereo Input and a Stereo Output
addAudioInput(STR16("Stereo In"), SpeakerArr::kStereo);
addAudioInput(STR16("Stereo In"), SpeakerArr::kStereo, kAux );
addAudioOutput(STR16("Stereo Out"), SpeakerArr::kStereo);

//---create Event In/Out busses (1 bus with 16 channels)------
Expand Down

0 comments on commit ee3dfe2

Please sign in to comment.