You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In method UwpMidiOutput.Convert(byte[], int, int, long)
the channel for the new MidiNoteOnMessage and MidiNoteOffMessage is calculated by (byte)(mevent [i] & 0x7F)
instead of (byte)(mevent [i] & 0x0F)
In method UwpMidiOutput.Convert(byte[], int, int, long)
the channel for the new MidiNoteOnMessage and MidiNoteOffMessage is calculated by
(byte)(mevent [i] & 0x7F)
instead of
(byte)(mevent [i] & 0x0F)
https://github.com/atsushieno/managed-midi/blob/master/Commons.Music.Midi.UwpShared/UwpMidiAccess.cs#L195
https://github.com/atsushieno/managed-midi/blob/master/Commons.Music.Midi.UwpShared/UwpMidiAccess.cs#L195
Here it is ok:
Commons.Music.Midi.Shared/SMF.cs
https://github.com/atsushieno/managed-midi/blob/master/Commons.Music.Midi.Shared/SMF.cs#L405
public byte Channel {
get { return (byte) (Value & 0x0F); }
}
The text was updated successfully, but these errors were encountered: