mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed a typo
This commit is contained in:
parent
28ce837575
commit
e41bb41a1e
1 changed files with 1 additions and 1 deletions
|
|
@ -1074,7 +1074,7 @@ public:
|
|||
&& owner.getProject().shouldEnableIAA()) ? 1 : 0;
|
||||
|
||||
auto pushNotificationsEnabled = owner.isPushNotificationsEnabled() ? 1 : 0;
|
||||
auto sandboxEnabled = ((type == Target::AudioUnitv3PlugIn) | owner.isAppSandboxEnabled()) ? 1 : 0;
|
||||
auto sandboxEnabled = ((type == Target::AudioUnitv3PlugIn) || owner.isAppSandboxEnabled()) ? 1 : 0;
|
||||
auto hardendedRuntimeEnabled = owner.isHardenedRuntimeEnabled() ? 1 : 0;
|
||||
|
||||
attributes << "SystemCapabilities = {";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue