Browse Source

Oops. Fix bug introduced in mapping note exclusion commit

that resulted in all non-note events being dropped.
tags/non-sequencer-v1.9.4
Jonathan Moore Liles 17 years ago
parent
commit
6765c3faea
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      pattern.C

+ 2
- 0
pattern.C View File

@@ -459,8 +459,10 @@ try_again:
}
else
if ( me.is_note_off() )
{
if ( mapping.translate( &me ) )
midi_output_event( _port, &me, 0 );
}
else
/* any other event type */
midi_output_event( _port, &me );


Loading…
Cancel
Save