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:
parent
67e1e4d00f
commit
c9a62c462f
1 changed files with 3 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue