From 977a33d64bd69622601f8c2a523e6995d8b5ca4b Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Sat, 18 Mar 2006 12:29:14 +0000 Subject: [PATCH] typo Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2548 --- src/hardware/mpu401.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hardware/mpu401.cpp b/src/hardware/mpu401.cpp index 271b3562..9f4c428d 100644 --- a/src/hardware/mpu401.cpp +++ b/src/hardware/mpu401.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: mpu401.cpp,v 1.18 2006-03-18 12:28:30 qbix79 Exp $ */ +/* $Id: mpu401.cpp,v 1.19 2006-03-18 12:29:14 qbix79 Exp $ */ #include #include "dosbox.h" @@ -631,7 +631,7 @@ public: ~MPU401(){ if(!installed) return; Section_prop * section=static_cast(m_configuration); - if(strcasecmp(section->Get_string("mpu401"),"intelligent") return; + if(strcasecmp(section->Get_string("mpu401"),"intelligent")) return; PIC_SetIRQMask(mpu.irq,true); } };