diff options
-rw-r--r-- | scumm/imuse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index 2ddc031a44..1770f27276 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -1134,7 +1134,7 @@ void IMuseInternal::initMT32 (MidiDriver *midi) { // Display a welcome message on MT-32 displays. memcpy (&buffer[4], "\x20\x00\x00", 3); memcpy (&buffer[7], " ", 20); - memcpy (&buffer + 7 + (20 - strlen ("ScummVM " SCUMMVM_VERSION)) / 2, + memcpy (buffer + 7 + (20 - strlen ("ScummVM " SCUMMVM_VERSION)) / 2, "ScummVM " SCUMMVM_VERSION, strlen ("ScummVM " SCUMMVM_VERSION)); byte checksum = 0; |