From 922ab25217fc93aa57a3e6b0d48ac46a3fb11419 Mon Sep 17 00:00:00 2001 From: Tres Finocchiaro Date: Wed, 4 Jun 2014 09:03:19 -0400 Subject: [PATCH] Fast forward vesa's sample-accurate changes --- plugins/vestige/vestige.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/vestige/vestige.cpp b/plugins/vestige/vestige.cpp index 8413f3ebd..7ae8dbcdd 100644 --- a/plugins/vestige/vestige.cpp +++ b/plugins/vestige/vestige.cpp @@ -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();