Implement MIDI-CC panel, remove and replace old Rack CC modules

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-01-29 16:51:50 +00:00
parent 756271f1d2
commit 20aaf47f33
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
8 changed files with 598 additions and 34 deletions

View file

@ -597,10 +597,8 @@ std::string pluginPath(const std::string& dirname);
// core plugins
namespace core {
extern Model* modelMIDICC_CV;
extern Model* modelMIDI_Gate;
extern Model* modelMIDIMap;
extern Model* modelCV_MIDICC;
extern Model* modelGate_MIDI;
extern Model* modelBlank;
}
@ -694,10 +692,8 @@ static void initStatic__Core()
const StaticPluginLoader spl(p, "Core");
if (spl.ok())
{
p->addModel(rack::core::modelMIDICC_CV);
p->addModel(rack::core::modelMIDI_Gate);
p->addModel(rack::core::modelMIDIMap);
p->addModel(rack::core::modelCV_MIDICC);
p->addModel(rack::core::modelGate_MIDI);
p->addModel(rack::core::modelBlank);
}