Browse Source

added extra initialisation

tags/2021-05-28
jules 18 years ago
parent
commit
641d6fc8c2
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      extras/audio plugins/wrapper/formats/VST/juce_VstWrapper.cpp

+ 7
- 1
extras/audio plugins/wrapper/formats/VST/juce_VstWrapper.cpp View File

@@ -470,6 +470,7 @@ public:
VstInt32 result = 0;
if (strcmp (text, "receiveVstEvents") == 0
|| strcmp (text, "receiveVstMidiEvent") == 0
|| strcmp (text, "receiveVstMidiEvents") == 0)
{
#if JucePlugin_WantsMidiInput
@@ -479,7 +480,8 @@ public:
#endif
}
else if (strcmp (text, "sendVstEvents") == 0
|| strcmp (text, "sendVstMidiEvent") == 0)
|| strcmp (text, "sendVstMidiEvent") == 0
|| strcmp (text, "sendVstMidiEvents") == 0)
{
#if JucePlugin_ProducesMidiOutput
result = 1;
@@ -1211,6 +1213,10 @@ void EditorCompWrapper::handleAsyncUpdate()
//==============================================================================
static AEffect* pluginEntryPoint (audioMasterCallback audioMaster)
{
#if JUCE_MAC || JUCE_LINUX
initialiseJuce_GUI();
#endif
MessageManager::getInstance()->setTimeBeforeShowingWaitCursor (0);
try


Loading…
Cancel
Save