mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-10 04:30:12 +02:00
Fix IPluginFactory implementation level detection
These were not getting initialized, and could thus evaluate to true if you're unlucky.
This commit is contained in:
@@ -49,12 +49,12 @@ class YaPluginFactory : public Steinberg::IPluginFactory3 {
|
|||||||
/**
|
/**
|
||||||
* Whether `factory` supported `IPluginFactory2`.
|
* Whether `factory` supported `IPluginFactory2`.
|
||||||
*/
|
*/
|
||||||
bool supports_plugin_factory_2;
|
bool supports_plugin_factory_2 = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether `factory` supported `IPluginFactory3`.
|
* Whether `factory` supported `IPluginFactory3`.
|
||||||
*/
|
*/
|
||||||
bool supports_plugin_factory_3;
|
bool supports_plugin_factory_3 = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For `IPluginFactory::getFactoryInfo`.
|
* For `IPluginFactory::getFactoryInfo`.
|
||||||
|
|||||||
Reference in New Issue
Block a user