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

Standalone: Fix typo in standalone wrapper

This commit is contained in:
reuk 2024-10-23 12:32:24 +01:00
parent 9e193862c1
commit efb0daf2e9
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -113,7 +113,7 @@ public:
#ifdef JucePlugin_PreferredChannelConfigurations
constexpr StandalonePluginHolder::PluginInOuts channels[] { JucePlugin_PreferredChannelConfigurations };
const Array<StandalonePluginHolder::PluginInOuts> channelConfig {channels, juce::numElementsInArray (channels));
const Array<StandalonePluginHolder::PluginInOuts> channelConfig (channels, juce::numElementsInArray (channels));
#else
const Array<StandalonePluginHolder::PluginInOuts> channelConfig;
#endif