From 4fd112b3f3f0d321e354735aeae200cc83fb81f7 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Mon, 10 Mar 2003 16:25:05 +0000 Subject: [PATCH] Enable/Disable mpu-401 Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@739 --- src/dosbox.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dosbox.cpp b/src/dosbox.cpp index 740be7ea..7fc29e0a 100644 --- a/src/dosbox.cpp +++ b/src/dosbox.cpp @@ -206,6 +206,7 @@ void DOSBOX_Init(void) { secprop->AddInitFunction(&CMS_Init); secprop->Add_bool("cms",false); secprop->AddInitFunction(&MPU401_Init); + secprop->Add_bool("mpu401",true); secprop=control->AddSection_prop("gus",&GUS_Init);