MidiPlayerJS icon indicating copy to clipboard operation
MidiPlayerJS copied to clipboard

Marker event has no marker name attached

Open serg472 opened this issue 2 years ago • 0 comments

A marker command inside a midi is followed by a string containing the marker name. Currently the marker name is not attached to the event, which can be easily fixed:

case 0x06:
  // Marker
  eventJson.name = 'Marker';
  eventJson.string = this.getStringData(eventStartIndex); //FIX
  break;

Thanks.

serg472 avatar Jul 12 '22 03:07 serg472