Remove unused variable

Remove the unused variable `frames` in `VestigeInstrument::play` to fix the stricter GitHub build.
This commit is contained in:
Michael Gregorius
2023-09-14 23:35:16 +02:00
parent d3d710e0ad
commit a6b6565687

View File

@@ -399,8 +399,6 @@ void VestigeInstrument::play( sampleFrame * _buf )
{
if (!m_pluginMutex.tryLock(Engine::getSong()->isExporting() ? -1 : 0)) {return;}
const fpp_t frames = Engine::audioEngine()->framesPerPeriod();
if( m_plugin == nullptr )
{
m_pluginMutex.unlock();