summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/stfight.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/stfight.c')
-rw-r--r--src/mame/machine/stfight.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/stfight.c b/src/mame/machine/stfight.c
index d6ff05a453b..a47efa07382 100644
--- a/src/mame/machine/stfight.c
+++ b/src/mame/machine/stfight.c
@@ -115,11 +115,11 @@ static TIMER_CALLBACK( stfight_interrupt_1 )
machine.device("maincpu")->execute().set_input_line_and_vector(0, HOLD_LINE, 0xcf);
}
-INTERRUPT_GEN( stfight_vb_interrupt )
+INTERRUPT_GEN_MEMBER(stfight_state::stfight_vb_interrupt)
{
// Do a RST10
- device->execute().set_input_line_and_vector(0, HOLD_LINE, 0xd7);
- device->machine().scheduler().timer_set(attotime::from_hz(120), FUNC(stfight_interrupt_1));
+ device.execute().set_input_line_and_vector(0, HOLD_LINE, 0xd7);
+ machine().scheduler().timer_set(attotime::from_hz(120), FUNC(stfight_interrupt_1));
}
/*