summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tickee.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tickee.c')
-rw-r--r--src/mame/drivers/tickee.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/tickee.c b/src/mame/drivers/tickee.c
index 868479f6577..3f85a782c8b 100644
--- a/src/mame/drivers/tickee.c
+++ b/src/mame/drivers/tickee.c
@@ -93,14 +93,14 @@ static TIMER_CALLBACK( trigger_gun_interrupt )
state->m_gunx[which] = beamx;
/* fire the IRQ at the correct moment */
- cputag_set_input_line(machine, "maincpu", param, ASSERT_LINE);
+ machine.device("maincpu")->execute().set_input_line(param, ASSERT_LINE);
}
static TIMER_CALLBACK( clear_gun_interrupt )
{
/* clear the IRQ on the next scanline? */
- cputag_set_input_line(machine, "maincpu", param, CLEAR_LINE);
+ machine.device("maincpu")->execute().set_input_line(param, CLEAR_LINE);
}