summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gauntlet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gauntlet.cpp')
-rw-r--r--src/mame/drivers/gauntlet.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mame/drivers/gauntlet.cpp b/src/mame/drivers/gauntlet.cpp
index 7f3f1b05ac5..c32e3920c50 100644
--- a/src/mame/drivers/gauntlet.cpp
+++ b/src/mame/drivers/gauntlet.cpp
@@ -148,13 +148,11 @@ void gauntlet_state::update_interrupts()
void gauntlet_state::scanline_update(screen_device &screen, int scanline)
{
- address_space &space = m_audiocpu->space(AS_PROGRAM);
-
/* sound IRQ is on 32V */
if (scanline & 32)
m_soundcomm->sound_irq_gen(*m_audiocpu);
else
- m_soundcomm->sound_irq_ack_r(space, 0);
+ m_soundcomm->sound_irq_ack_w();
}