Closed arobot closed 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)); ...
should be