LeffelMania / android-midi-lib

MIT License
255 stars 72 forks source link

Error at MidiTrack insertNote #21

Closed arobot closed 6 years ago

arobot commented 6 years ago
public class MidiTrack {
    ...
    this.insertEvent(new NoteOn(tick, channel, pitch, velocity));
    this.insertEvent(new NoteOn(tick + duration, channel, pitch, 0));
    ...

should be

public class MidiTrack {
    ...
    this.insertEvent(new NoteOn(tick, channel, pitch, velocity));
    this.insertEvent(new NoteOff(tick + duration, channel, pitch, 0));
    ...