mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +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`.
|
||||
*/
|
||||
bool supports_plugin_factory_2;
|
||||
bool supports_plugin_factory_2 = false;
|
||||
|
||||
/**
|
||||
* Whether `factory` supported `IPluginFactory3`.
|
||||
*/
|
||||
bool supports_plugin_factory_3;
|
||||
bool supports_plugin_factory_3 = false;
|
||||
|
||||
/**
|
||||
* For `IPluginFactory::getFactoryInfo`.
|
||||
|
||||
Reference in New Issue
Block a user