diff options
author | 2016-08-26 16:53:13 +1000 | |
---|---|---|
committer | 2016-08-26 16:53:13 +1000 | |
commit | e38a1e4737f64bfa44ca443090b58a9f69fd489b (patch) | |
tree | d14b898ce9c9b0739b9be38acf5bc09449829770 /src/mame/drivers/gauntlet.cpp | |
parent | 11b806878ffe2a25b60132af61e177c6395ff56a (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.cpp | 2 |
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); } |