Browse Source

Skip a few internal plugins in Ildaeil that we know are useless

tags/22.02
falkTX 3 years ago
parent
commit
75aad04bb8
1 changed files with 18 additions and 0 deletions
  1. +18
    -0
      plugins/Cardinal/src/Ildaeil.cpp

+ 18
- 0
plugins/Cardinal/src/Ildaeil.cpp View File

@@ -1169,6 +1169,24 @@ struct IldaeilWidget : ImGuiWidget, IdleCallback, Thread {
continue;
if (info->audioIns != 0 && info->audioIns != 2)
continue;
if (info->midiIns != 0 && info->midiIns != 1)
continue;
if (info->midiOuts != 0 && info->midiOuts != 1)
continue;

if (fPluginType == PLUGIN_INTERNAL)
{
if (std::strcmp(info->label, "audiogain_s") == 0)
continue;
if (std::strcmp(info->label, "cv2audio") == 0)
continue;
if (std::strcmp(info->label, "lfo") == 0)
continue;
if (std::strcmp(info->label, "midi2cv") == 0)
continue;
if (std::strcmp(info->label, "midithrough") == 0)
continue;
}

j = fPluginCount;
fPlugins[j].name = strdup(info->name);


Loading…
Cancel
Save