cwilso / WebMIDIAPIShim

Polyfill using the Jazz NPAPI MIDI plugin to implement the Web MIDI API on Mac and Windows.
380 stars 53 forks source link

Fixing Sysex buffering #39

Closed halfbyte closed 10 years ago

halfbyte commented 10 years ago

The original code tries to truncate the Sysex buffer by setting the length to 0. But since it is a typed array, this will either not work (Firefox) or error out (Chrome).

Fixes #37