From cb5c3c2619368aaf716baf7e8be74fd38e9e14e3 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Thu, 16 Dec 2004 19:19:39 +0000 Subject: [PATCH] country table doesn't write reserved bytes (wd) Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2080 --- src/dos/dos.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dos/dos.cpp b/src/dos/dos.cpp index e0bc2665..7546c642 100644 --- a/src/dos/dos.cpp +++ b/src/dos/dos.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: dos.cpp,v 1.79 2004-12-04 08:02:09 qbix79 Exp $ */ +/* $Id: dos.cpp,v 1.80 2004-12-16 19:19:39 qbix79 Exp $ */ #include #include @@ -405,7 +405,7 @@ static Bitu DOS_21Handler(void) { case 0x38: /* Set Country Code */ if (reg_al==0) { /* Get country specidic information */ PhysPt dest = SegPhys(ds)+reg_dx; - MEM_BlockWrite(dest,dos.tables.country,0x22); + MEM_BlockWrite(dest,dos.tables.country,0x18); reg_bx = 0x01; CALLBACK_SCF(false); break;