This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Do not require label for vst3
tags/v2.1-rc1
falkTX
5 years ago
parent
cae121d99f
commit
3322c9fa7b
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
source/backend/plugin/CarlaPluginJuce.cpp
+ 2
- 2
source/backend/plugin/CarlaPluginJuce.cpp
View File
@@ -1229,8 +1229,8 @@ public:
return false;
}
// AU
and VST3
require label
if (std::strcmp(format, "AU") == 0
|| std::strcmp(format, "VST3") == 0
)
// AU require
s
label
if (std::strcmp(format, "AU") == 0)
{
if (label == nullptr || label[0] == '\0')
{
Write
Preview
Loading…
Cancel
Save