This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Dynamic vst2 plugin name
Signed-off-by: falkTX <falktx@falktx.com>
develop-distrho
falkTX
1 year ago
parent
deafab42d1
commit
fcbbc47e35
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_audio_plugin_client/juce_audio_plugin_client_VST2.cpp
+ 1
- 1
modules/juce_audio_plugin_client/juce_audio_plugin_client_VST2.cpp
View File
@@ -1778,7 +1778,7 @@ private:
pointer_sized_int handleGetPlugInName (VstOpCodeArguments args)
{
String (
JucePlugin_Name
).copyToUTF8 ((char*) args.ptr, 64 + 1);
String (
processor->getName()
).copyToUTF8 ((char*) args.ptr, 64 + 1);
return 1;
}
Write
Preview
Loading…
Cancel
Save