From ee5f6c5a927c0f8a7fd9e594f0dfb770add01462 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Strohh=C3=A4cker?= Date: Sun, 25 Oct 2009 16:22:22 +0000 Subject: [PATCH] behave like the real thing Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3487 --- src/hardware/sblaster.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hardware/sblaster.cpp b/src/hardware/sblaster.cpp index df55a769..a8329028 100644 --- a/src/hardware/sblaster.cpp +++ b/src/hardware/sblaster.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: sblaster.cpp,v 1.77 2009-07-11 10:39:38 harekiet Exp $ */ +/* $Id: sblaster.cpp,v 1.78 2009-10-25 16:22:22 c2woody Exp $ */ #include #include @@ -250,7 +250,7 @@ static INLINE void SB_RaiseIRQ(SB_IRQS type) { switch (type) { case SB_IRQ_8: if (sb.irq.pending_8bit) { - E_Exit("SB: 8bit irq pending"); +// LOG_MSG("SB: 8bit irq pending"); return; } sb.irq.pending_8bit=true; @@ -258,7 +258,7 @@ static INLINE void SB_RaiseIRQ(SB_IRQS type) { break; case SB_IRQ_16: if (sb.irq.pending_16bit) { - E_Exit("SB: 16bit irq pending"); +// LOG_MSG("SB: 16bit irq pending"); return; } sb.irq.pending_16bit=true;