Honor VST "Synth" Category for now...
..until we find a backwards compatible way to save/load effFlagsIsSynth in the cache info files.
This commit is contained in:
parent
6fb099a88b
commit
5438c94765
@ -302,6 +302,9 @@ vstfx_load_info_block (FILE* fp, VSTInfo *info)
|
||||
|
||||
// TODO read isInstrument -- effFlagsIsSynth
|
||||
info->isInstrument = info->numInputs == 0 && info->numOutputs > 0 && 1 == (info->wantMidi & 1);
|
||||
if (!strcmp (info->Category, "Synth")) {
|
||||
info->isInstrument = true;
|
||||
}
|
||||
|
||||
if ((info->numParams) == 0) {
|
||||
info->ParamNames = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user