1
0
Fork 0

Removed an E_Exit from an illegal call, seems to fix impulse tracker.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1206
This commit is contained in:
Sjoerd van der Berg 2003-08-29 08:16:48 +00:00
parent 67e1e4d00f
commit c9a62c462f

View file

@ -532,7 +532,9 @@ static Bitu DOS_21Handler(void) {
CALLBACK_SCF(false);
break;
default:
E_Exit("DOS:0x43:Illegal subfunction %2X",reg_al);
LOG(LOG_MISC,LOG_ERROR)("DOS:0x43:Illegal subfunction %2X",reg_al);
CALLBACK_SCF(false);
break;
}
break;
case 0x44: /* IOCTL Functions */