Restore 8x8 and 16x16 audio modules
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
c405c333b1
commit
5c50bb7192
2 changed files with 22 additions and 0 deletions
|
@ -23,6 +23,24 @@
|
|||
"External"
|
||||
]
|
||||
},
|
||||
{
|
||||
"slug": "AudioInterface",
|
||||
"name": "Audio-8",
|
||||
"description": "Sends audio and CV to/from an audio device",
|
||||
"manualUrl": "https://vcvrack.com/manual/Core#Audio",
|
||||
"tags": [
|
||||
"External"
|
||||
]
|
||||
},
|
||||
{
|
||||
"slug": "AudioInterface16",
|
||||
"name": "Audio-16",
|
||||
"description": "Sends audio and CV to/from an audio device",
|
||||
"manualUrl": "https://vcvrack.com/manual/Core#Audio",
|
||||
"tags": [
|
||||
"External"
|
||||
]
|
||||
},
|
||||
{
|
||||
"slug": "MIDIToCVInterface",
|
||||
"name": "MIDI-CV",
|
||||
|
|
|
@ -193,7 +193,9 @@ namespace rack {
|
|||
|
||||
// core plugins
|
||||
namespace core {
|
||||
extern Model* modelAudioInterface;
|
||||
extern Model* modelAudioInterface2;
|
||||
extern Model* modelAudioInterface16;
|
||||
extern Model* modelMIDI_CV;
|
||||
extern Model* modelMIDI_CC;
|
||||
extern Model* modelMIDI_Gate;
|
||||
|
@ -295,7 +297,9 @@ static void initStatic__Core()
|
|||
const StaticPluginLoader spl(p);
|
||||
if (spl.ok())
|
||||
{
|
||||
p->addModel(rack::core::modelAudioInterface);
|
||||
p->addModel(rack::core::modelAudioInterface2);
|
||||
p->addModel(rack::core::modelAudioInterface16);
|
||||
p->addModel(rack::core::modelMIDI_CV);
|
||||
p->addModel(rack::core::modelMIDI_CC);
|
||||
p->addModel(rack::core::modelMIDI_Gate);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue