Commit 0bfdc555 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

Silence the FIXME produced by an install check of MVSOUND.SYS.

parent 11346f94
......@@ -231,6 +231,13 @@ void WINAPI DOSVM_Int2fHandler( CONTEXT86 *context )
break;
}
break;
case 0xbc:
if (AL_reg(context) == 0x00 && BX_reg(context) == 0x3f3f) {
/* MVSOUND.SYS - Install check: not installed */
} else {
INT_BARF( context, 0x2f );
}
break;
case 0xbd: /* some Novell network install check ??? */
SET_AX( context, 0xa5a5 ); /* pretend to have Novell IPX installed */
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment