1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

VST3 Client: Reorder VST3 class factory for compatibility with JRiver Media Centre

This commit is contained in:
reuk 2023-09-11 14:32:01 +01:00
parent 2882cdbc83
commit b52a62a48d

View file

@ -4235,10 +4235,6 @@ private:
static const ClassEntry classEntries[]
{
ClassEntry { compatibilityClass, [] (Vst::IHostApplication*) -> Steinberg::FUnknown*
{
return new JucePluginCompatibility;
} },
ClassEntry { componentClass, [] (Vst::IHostApplication* h) -> Steinberg::FUnknown*
{
return static_cast<Vst::IAudioProcessor*> (new JuceVST3Component (h));
@ -4247,6 +4243,10 @@ private:
{
return static_cast<Vst::IEditController*> (new JuceVST3EditController (h));
} },
ClassEntry { compatibilityClass, [] (Vst::IHostApplication*) -> Steinberg::FUnknown*
{
return new JucePluginCompatibility;
} },
#if JucePlugin_Enable_ARA
ClassEntry { araFactoryClass, [] (Vst::IHostApplication*) -> Steinberg::FUnknown*
{