From cd2718f011ecb9c520c08caa6cd46d0a73019d55 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Mon, 18 Feb 2008 19:48:22 +0000 Subject: [PATCH] Fix (a part of) marriage. ;) (don't zero al on unknown calls) Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3104 --- src/ints/int10.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ints/int10.cpp b/src/ints/int10.cpp index 3effb153..ffa93e67 100644 --- a/src/ints/int10.cpp +++ b/src/ints/int10.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: int10.cpp,v 1.48 2008-01-09 20:34:51 c2woody Exp $ */ +/* $Id: int10.cpp,v 1.49 2008-02-18 19:48:22 qbix79 Exp $ */ #include "dosbox.h" #include "mem.h" @@ -643,8 +643,8 @@ graphics_chars: warned_ff=true; break; default: - LOG(LOG_INT10,LOG_ERROR)("Function %2X not supported",reg_ah); - reg_al=0x00; //Successfull + LOG(LOG_INT10,LOG_ERROR)("Function %4X not supported",reg_ax); +// reg_al=0x00; //Successfull, breaks marriage break; }; return CBRET_NONE;