aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorJamieson Christian2003-06-01 04:15:10 +0000
committerJamieson Christian2003-06-01 04:15:10 +0000
commit65ca5485022e6548df57a1dab869fb46f522c34a (patch)
treeaa6ec3e38f8bea22cc39f6cb5444eea13d5eaa99 /scumm
parent86138eda44feab1f0c1c7d17d5f31eefe394600b (diff)
downloadscummvm-rg350-65ca5485022e6548df57a1dab869fb46f522c34a.tar.gz
scummvm-rg350-65ca5485022e6548df57a1dab869fb46f522c34a.tar.bz2
scummvm-rg350-65ca5485022e6548df57a1dab869fb46f522c34a.zip
Fixed MT-32 welcome message
svn-id: r8225
Diffstat (limited to 'scumm')
-rw-r--r--scumm/imuse.cpp2
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;