fixed argument being passed into errormessage of vsteffect

This commit is contained in:
grindhold
2014-11-10 10:45:38 +01:00
parent f746db27f0
commit ec457ac69b

View File

@@ -135,7 +135,7 @@ void VstEffect::openPlugin( const QString & _plugin )
m_pluginMutex.unlock();
closePlugin();
delete tf;
logError( VstPlugin::tr( "The VST plugin %1 could not be loaded." ) );
logError( VstPlugin::tr( "The VST plugin %1 could not be loaded." ).arg( _plugin ) );
return;
}