1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-01 06:10:09 +01: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

@@ -1521,7 +1521,8 @@ VSTEffect::VSTEffect(const wxString & path, VSTEffect *master)
mTimeInfo.flags = kVstTempoValid | kVstNanosValid;
// UI
mGui = false;
mNames = NULL;
mSliders = NULL;
mDisplays = NULL;
@@ -3598,7 +3599,7 @@ void VSTEffect::BuildPlain()
void VSTEffect::RefreshParameters(int skip)
{
if (mGui)
if (!mNames)
{
return;
}