Fixed sysEx buffer sizes.

svn-id: r35192
This commit is contained in:
Johannes Schickel 2008-11-30 13:03:43 +00:00
parent 8d59712192
commit b12ebf7218
2 changed files with 2 additions and 2 deletions

View file

@ -146,7 +146,7 @@ void MidiDriver_SEQ::send(uint32 b) {
}
void MidiDriver_SEQ::sysEx (const byte *msg, uint16 length) {
unsigned char buf [1330];
unsigned char buf [266*4];
int position = 0;
const byte *chr = msg;