diff options
author | Jamieson Christian | 2003-05-25 01:48:59 +0000 |
---|---|---|
committer | Jamieson Christian | 2003-05-25 01:48:59 +0000 |
commit | 4c09e5472f5dfde8947a62e8d8bc074655e2ecd6 (patch) | |
tree | f2959cb287190028bd42db815c2c323d2629c396 /scumm | |
parent | 45a2148d98e7aa13b1ad2bd61ec86ea908cc9f64 (diff) | |
download | scummvm-rg350-4c09e5472f5dfde8947a62e8d8bc074655e2ecd6.tar.gz scummvm-rg350-4c09e5472f5dfde8947a62e8d8bc074655e2ecd6.tar.bz2 scummvm-rg350-4c09e5472f5dfde8947a62e8d8bc074655e2ecd6.zip |
Finishing the fix
svn-id: r7923
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp index 46c0ddbd6c..828780c0fa 100644 --- a/scumm/resource.cpp +++ b/scumm/resource.cpp @@ -1212,7 +1212,7 @@ int Scumm::readSoundResourceSmallHeader(int type, int idx) { memcpy(ptr, "\x00\xf7", 2); ptr += 2; // sysex end marker // Finally we reinsert the end of song sysex, just in case - memcpy(ptr, "\x00\xff\x21\x00\x00", 5); ptr += 5; + memcpy(ptr, "\x00\xff\x2f\x00\x00", 5); ptr += 5; } return 1; |