From ae5e0c32020fb07f2608701f0bff110a22f35920 Mon Sep 17 00:00:00 2001 From: Vesa Date: Wed, 9 Jul 2014 20:45:19 +0300 Subject: [PATCH] Rebase on master to fix older bugs --- src/tracks/InstrumentTrack.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/tracks/InstrumentTrack.cpp b/src/tracks/InstrumentTrack.cpp index 01d337dae..cd456d567 100644 --- a/src/tracks/InstrumentTrack.cpp +++ b/src/tracks/InstrumentTrack.cpp @@ -264,7 +264,6 @@ MidiEvent InstrumentTrack::applyMasterKey( const MidiEvent& event ) void InstrumentTrack::processInEvent( const MidiEvent& event, const MidiTime& time, f_cnt_t offset ) { - qDebug( "pIE" ); bool eventHandled = false; switch( event.type() ) @@ -278,7 +277,6 @@ void InstrumentTrack::processInEvent( const MidiEvent& event, const MidiTime& ti NotePlayHandle* nph; if( m_notes[event.key()] == NULL ) { - qDebug( "note on" ); m_notesMutex.lock(); nph = new NotePlayHandle( this, offset, typeInfo::max() / 2, @@ -382,7 +380,6 @@ void InstrumentTrack::processInEvent( const MidiEvent& event, const MidiTime& ti void InstrumentTrack::processOutEvent( const MidiEvent& event, const MidiTime& time, f_cnt_t offset ) { - qDebug( "pOE" ); // do nothing if we do not have an instrument instance (e.g. when loading settings) if( m_instrument == NULL ) { @@ -399,7 +396,6 @@ void InstrumentTrack::processOutEvent( const MidiEvent& event, const MidiTime& t if( key >= 0 && key < NumKeys ) { - qDebug( "poe noteon" ); if( m_runningMidiNotes[key] > 0 ) { m_instrument->handleMidiEvent( MidiEvent( MidiNoteOff, midiPort()->realOutputChannel(), key, 0 ), time, offset );