diff options
| -rw-r--r-- | engines/sci/sfx/softseq/amiga.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/engines/sci/sfx/softseq/amiga.cpp b/engines/sci/sfx/softseq/amiga.cpp index cab1b26722..d16e82fab5 100644 --- a/engines/sci/sfx/softseq/amiga.cpp +++ b/engines/sci/sfx/softseq/amiga.cpp @@ -574,6 +574,9 @@ void MidiDriver_Amiga::send(uint32 b) {  	byte op2 = (b >> 16) & 0xff;  	switch (command) { +	case 0x80: +		stopNote(channel, op1); +		break;  	case 0x90:  		if (op2 > 0)  			startNote(channel, op1, op2); | 
