1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-16 08:34:10 +02:00

Pretty sure this is the fix for the crashing VSTs

This commit is contained in:
Leland Lucius 2015-07-05 13:48:59 -05:00
parent d7d1de46f8
commit 22c8f7fb76

View File

@ -1522,6 +1522,7 @@ VSTEffect::VSTEffect(const wxString & path, VSTEffect *master)
// UI // UI
mGui = false;
mNames = NULL; mNames = NULL;
mSliders = NULL; mSliders = NULL;
mDisplays = NULL; mDisplays = NULL;
@ -3598,7 +3599,7 @@ void VSTEffect::BuildPlain()
void VSTEffect::RefreshParameters(int skip) void VSTEffect::RefreshParameters(int skip)
{ {
if (mGui) if (!mNames)
{ {
return; return;
} }