From 836fa347867b6b8a83367ffd527dc48237758ca3 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Mon, 14 Jul 2003 12:44:23 +0000 Subject: [PATCH] Check for xms being enabled not ems Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1135 --- src/ints/xms.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ints/xms.cpp b/src/ints/xms.cpp index 70693fb6..f610ef94 100644 --- a/src/ints/xms.cpp +++ b/src/ints/xms.cpp @@ -332,7 +332,7 @@ Bitu XMS_Handler(void) { void XMS_Init(Section* sec) { Section_prop * section=static_cast(sec); - if (!section->Get_bool("ems")) return; + if (!section->Get_bool("xms")) return; Bitu i; DOS_AddMultiplexHandler(multiplex_xms);