From 58fc9362ebb691a6c505d083ee4f5d216a7a3654 Mon Sep 17 00:00:00 2001 From: Zsolt Vasvari Date: Sun, 24 Feb 2008 01:54:54 +0000 Subject: [PATCH] This fixes the DAC sound in X The Ball that got broken in 114u2. Not 100% if the fix is right, though. --- src/emu/cpu/tms34010/tms34010.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/emu/cpu/tms34010/tms34010.c b/src/emu/cpu/tms34010/tms34010.c index 700cce3af00..36c53dc6303 100644 --- a/src/emu/cpu/tms34010/tms34010.c +++ b/src/emu/cpu/tms34010/tms34010.c @@ -783,6 +783,8 @@ static void set_irq_line(int irqline, int linestate) IOREG(REG_INTPEND) &= ~TMS34010_INT2; break; } + + check_interrupt(); }