diff options
-rw-r--r-- | backends/midi/seq.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/midi/seq.cpp b/backends/midi/seq.cpp index 0a1458afd4..1d77646392 100644 --- a/backends/midi/seq.cpp +++ b/backends/midi/seq.cpp @@ -148,7 +148,7 @@ void MidiDriver_SEQ::sysEx (const byte *msg, uint16 length) { unsigned char buf [1024]; int position = 0; - byte *chr = msg; + const byte *chr = msg; buf[position++] = SEQ_MIDIPUTC; buf[position++] = 0xF0; |