Fast forward vesa's sample-accurate changes

This commit is contained in:
Tres Finocchiaro
2014-06-04 09:03:19 -04:00
parent e06759d0d8
commit 922ab25217

View File

@@ -311,12 +311,12 @@ void vestigeInstrument::play( sampleFrame * _buf )
bool vestigeInstrument::handleMidiEvent( const MidiEvent& event, const MidiTime& time )
bool vestigeInstrument::handleMidiEvent( const MidiEvent& event, const MidiTime& time, f_cnt_t offset )
{
m_pluginMutex.lock();
if( m_plugin != NULL )
{
m_plugin->processMidiEvent( event, time );
m_plugin->processMidiEvent( event, offset );
}
m_pluginMutex.unlock();