From c9a62c462f314b67aa0ddd24465c152f7c46ee06 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Fri, 29 Aug 2003 08:16:48 +0000 Subject: [PATCH] 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 --- src/dos/dos.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/dos/dos.cpp b/src/dos/dos.cpp index fc6da360..fe98e810 100644 --- a/src/dos/dos.cpp +++ b/src/dos/dos.cpp @@ -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 */