summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/lgp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/lgp.c')
-rw-r--r--src/mame/drivers/lgp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/lgp.c b/src/mame/drivers/lgp.c
index aea815c57b6..fccd49456f7 100644
--- a/src/mame/drivers/lgp.c
+++ b/src/mame/drivers/lgp.c
@@ -339,10 +339,10 @@ static INTERRUPT_GEN( vblank_callback_lgp )
{
lgp_state *state = device->machine().driver_data<lgp_state>();
// NMI
- //device_set_input_line(device, INPUT_LINE_NMI, PULSE_LINE);
+ //device->execute().set_input_line(INPUT_LINE_NMI, PULSE_LINE);
// IRQ
- device_set_input_line(device, 0, ASSERT_LINE);
+ device->execute().set_input_line(0, ASSERT_LINE);
state->m_irq_timer->adjust(attotime::from_usec(50));
}