From 7c7e296cb805160fd1faaa497a5efae1e78b09f4 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Mon, 16 Sep 2002 13:13:10 +0000 Subject: [PATCH] INT 0x2A vector wasn't set correctly Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@275 --- src/dos/dos_misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dos/dos_misc.cpp b/src/dos/dos_misc.cpp index cce5adad..9072d337 100644 --- a/src/dos/dos_misc.cpp +++ b/src/dos/dos_misc.cpp @@ -64,6 +64,6 @@ void DOS_SetupMisc(void) { /* Setup the dos network interrupt */ call_int2a=CALLBACK_Allocate(); CALLBACK_Setup(call_int2a,&INT2A_Handler,CB_IRET); - RealSetVec(0x2A<<2,CALLBACK_RealPointer(call_int2a)); + RealSetVec(0x2A,CALLBACK_RealPointer(call_int2a)); };