summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/rpunch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/rpunch.c')
-rw-r--r--src/mame/video/rpunch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/rpunch.c b/src/mame/video/rpunch.c
index a2ccb644a57..e1bc86ab953 100644
--- a/src/mame/video/rpunch.c
+++ b/src/mame/video/rpunch.c
@@ -61,7 +61,7 @@ TILE_GET_INFO_MEMBER(rpunch_state::get_bg1_tile_info)
static TIMER_CALLBACK( crtc_interrupt_gen )
{
rpunch_state *state = machine.driver_data<rpunch_state>();
- cputag_set_input_line(machine, "maincpu", 1, HOLD_LINE);
+ machine.device("maincpu")->execute().set_input_line(1, HOLD_LINE);
if (param != 0)
state->m_crtc_timer->adjust(machine.primary_screen->frame_period() / param, 0, machine.primary_screen->frame_period() / param);
}