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:
parent
2882cdbc83
commit
b52a62a48d
1 changed files with 4 additions and 4 deletions
|
|
@ -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*
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue