Restore 8x8 and 16x16 audio modules

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2021-10-18 16:40:50 +01:00
parent c405c333b1
commit 5c50bb7192
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
2 changed files with 22 additions and 0 deletions

View file

@ -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",

View file

@ -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);