From a63687d7bfe30d6c45fd091406bbc530d001fa9b Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Sat, 19 Oct 2002 15:46:42 +0000 Subject: [PATCH] No E_Exit on unhandled call anymore Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@347 --- src/ints/bios_keyboard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ints/bios_keyboard.cpp b/src/ints/bios_keyboard.cpp index 428a5924..3fcc4475 100644 --- a/src/ints/bios_keyboard.cpp +++ b/src/ints/bios_keyboard.cpp @@ -329,7 +329,7 @@ static Bitu INT16_Handler(void) { LOG_DEBUG("INT16:55:Word TSR compatible call"); break; default: - E_Exit("INT16:Unhandled call %02X",reg_ah); + LOG_ERROR("INT16:Unhandled call %02X",reg_ah); break; };