Skip to content

Commit

Permalink
SCI: Added handling for another version of mt32.drv (bug #3285556)
Browse files Browse the repository at this point in the history
This is used in another version of KQ4 early (0.000.274)
  • Loading branch information
bluegr committed Apr 13, 2011
1 parent 1986c1d commit 22046d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sci/sound/drivers/midi.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 22046d2

Please sign in to comment.