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

Fixed a typo in the StandalonePluginHolder constructor

This commit is contained in:
ed 2019-02-11 16:08:59 +00:00
parent 045bd32f40
commit 083078034a

View file

@ -94,7 +94,7 @@ public:
RuntimePermissions::request (RuntimePermissions::recordAudio,
[this, preferredDefaultDeviceName] (bool granted) { init (granted, preferredDefaultDeviceName); });
else
init (true, preferredDefaultDeviceName);
init (false, preferredDefaultDeviceName);
}
void init (bool enableAudioInput, const String& preferredDefaultDeviceName)