summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/gauntlet.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-08-26 16:53:13 +1000
committer Vas Crabb <vas@vastheman.com>2016-08-26 16:53:13 +1000
commite38a1e4737f64bfa44ca443090b58a9f69fd489b (patch)
treed14b898ce9c9b0739b9be38acf5bc09449829770 /src/mame/drivers/gauntlet.cpp
parent11b806878ffe2a25b60132af61e177c6395ff56a (diff)
Prepare to make object finders behave like a pointer, not a half-pointer half reference part 1 (nw)
Diffstat (limited to 'src/mame/drivers/gauntlet.cpp')
-rw-r--r--src/mame/drivers/gauntlet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/gauntlet.cpp b/src/mame/drivers/gauntlet.cpp
index 74f8ead74d5..4bb236869c5 100644
--- a/src/mame/drivers/gauntlet.cpp
+++ b/src/mame/drivers/gauntlet.cpp
@@ -150,7 +150,7 @@ void gauntlet_state::scanline_update(screen_device &screen, int scanline)
/* sound IRQ is on 32V */
if (scanline & 32)
- m_soundcomm->sound_irq_gen(m_audiocpu);
+ m_soundcomm->sound_irq_gen(*m_audiocpu);
else
m_soundcomm->sound_irq_ack_r(space, 0);
}