diff --git a/src/core/bb_editor.cpp b/src/core/bb_editor.cpp index 3055c56ff..6ab82c463 100644 --- a/src/core/bb_editor.cpp +++ b/src/core/bb_editor.cpp @@ -239,12 +239,11 @@ bool FASTCALL bbEditor::play( midiTime _start, f_cnt_t _start_frame, _start = ( _start.getTact() % lengthOfBB( _tco_num ) ) * 64 + _start.getTact64th(); - bbTrack * bb_track = bbTrack::findBBTrack( _tco_num, eng() ); trackVector tv = tracks(); for( trackVector::iterator it = tv.begin(); it != tv.end(); ++it ) { - if( !bb_track->isDisabled( *it ) && ( *it )->play( _start, - _start_frame, _frames, _frame_base, _tco_num ) == TRUE ) + if( ( *it )->play( _start, _start_frame, _frames, _frame_base, + _tco_num ) == TRUE ) { played_a_note = TRUE; }