1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

added extra initialisation

This commit is contained in:
jules 2007-06-26 15:21:49 +00:00
parent d9e34a6f38
commit 641d6fc8c2

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