shithub: m8c

Download patch

ref: 2b6fc5bbfd99477a4a4da8088fc2f5e915816b5b
parent: 13ac56f7c6b78798021ced04345ba042842b8b89
author: Jonne Kokkonen <jonne.kokkonen@gmail.com>
date: Mon Mar 17 20:10:10 EDT 2025

edit sysex header

--- a/src/midi.c
+++ b/src/midi.c
@@ -16,7 +16,7 @@
 RtMidiOutPtr midi_out;
 message_queue_s queue;
 
-const unsigned char m8_sysex_header[4] = {0xF0, 0x00, 0x02, 0x61};
+const unsigned char m8_sysex_header[5] = {0xF0, 0x00, 0x02, 0x61, 0x00};
 const unsigned int m8_sysex_header_size = sizeof(m8_sysex_header);
 const unsigned char sysex_message_end = 0xF7;
 
@@ -235,4 +235,4 @@
   return disconnect();
 }
 
-#endif
\ No newline at end of file
+#endif
--