summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/exidy440.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/exidy440.c')
-rw-r--r--src/mame/video/exidy440.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/video/exidy440.c b/src/mame/video/exidy440.c
index 1e0fa28790d..3e5c4752a8a 100644
--- a/src/mame/video/exidy440.c
+++ b/src/mame/video/exidy440.c
@@ -233,12 +233,11 @@ static void exidy440_update_firq(running_machine &machine)
}
-INTERRUPT_GEN( exidy440_vblank_interrupt )
+INTERRUPT_GEN_MEMBER(exidy440_state::exidy440_vblank_interrupt)
{
- exidy440_state *state = device->machine().driver_data<exidy440_state>();
/* set the FIRQ line on a VBLANK */
- state->m_firq_vblank = 1;
- exidy440_update_firq(device->machine());
+ m_firq_vblank = 1;
+ exidy440_update_firq(machine());
}