[Scummvm-cvs-logs] scummvm master -> 22046d24802c3162cd99fd9b26c0930410f96d2f

bluegr md5 at scummvm.org
Wed Apr 13 09:31:19 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
22046d2480 SCI: Added handling for another version of mt32.drv (bug #3285556)


Commit: 22046d24802c3162cd99fd9b26c0930410f96d2f
    https://github.com/scummvm/scummvm/commit/22046d24802c3162cd99fd9b26c0930410f96d2f
Author: md5 (md5 at scummvm.org)
Date: 2011-04-13T00:29:24-07:00

Commit Message:
SCI: Added handling for another version of mt32.drv (bug #3285556)

This is used in another version of KQ4 early (0.000.274)

Changed paths:
    engines/sci/sound/drivers/midi.cpp



diff --git a/engines/sci/sound/drivers/midi.cpp b/engines/sci/sound/drivers/midi.cpp
index f674a50..9eef867 100644
--- a/engines/sci/sound/drivers/midi.cpp
+++ b/engines/sci/sound/drivers/midi.cpp
@@ -611,7 +611,7 @@ void MidiPlayer_Midi::readMt32DrvData() {
 		int size = f.size();
 
 		// Skip before-SysEx text
-		if (size == 1773 || size == 1759)	// XMAS88 / KQ4 early
+		if (size == 1773 || size == 1759 || size == 1747)	// XMAS88 / KQ4 early (0.000.253 / 0.000.274)
 			f.seek(0x59);
 		else if (size == 2771)				// LSL2 early
 			f.seek(0x29);






More information about the Scummvm-git-logs mailing list