diff options
author | Jamieson Christian | 2003-06-01 04:15:10 +0000 |
---|---|---|
committer | Jamieson Christian | 2003-06-01 04:15:10 +0000 |
commit | 65ca5485022e6548df57a1dab869fb46f522c34a (patch) | |
tree | aa6ec3e38f8bea22cc39f6cb5444eea13d5eaa99 | |
parent | 86138eda44feab1f0c1c7d17d5f31eefe394600b (diff) | |
download | scummvm-rg350-65ca5485022e6548df57a1dab869fb46f522c34a.tar.gz scummvm-rg350-65ca5485022e6548df57a1dab869fb46f522c34a.tar.bz2 scummvm-rg350-65ca5485022e6548df57a1dab869fb46f522c34a.zip |
Fixed MT-32 welcome message
svn-id: r8225
-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; |