diff options
Diffstat (limited to 'src/mess/drivers/galaxy.c')
-rw-r--r-- | src/mess/drivers/galaxy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/drivers/galaxy.c b/src/mess/drivers/galaxy.c index 36960f6019b..01fabca235d 100644 --- a/src/mess/drivers/galaxy.c +++ b/src/mess/drivers/galaxy.c @@ -187,7 +187,7 @@ static MACHINE_CONFIG_START( galaxy, galaxy_state ) /* basic machine hardware */ MCFG_CPU_ADD("maincpu", Z80, XTAL / 2) MCFG_CPU_PROGRAM_MAP(galaxy_mem) - MCFG_CPU_VBLANK_INT("screen", galaxy_interrupt) + MCFG_CPU_VBLANK_INT_DRIVER("screen", galaxy_state, galaxy_interrupt) MCFG_SCREEN_ADD("screen", RASTER) MCFG_SCREEN_REFRESH_RATE(50) @@ -223,7 +223,7 @@ static MACHINE_CONFIG_START( galaxyp, galaxy_state ) MCFG_CPU_ADD("maincpu", Z80, XTAL / 2) MCFG_CPU_PROGRAM_MAP(galaxyp_mem) MCFG_CPU_IO_MAP(galaxyp_io) - MCFG_CPU_VBLANK_INT("screen", galaxy_interrupt) + MCFG_CPU_VBLANK_INT_DRIVER("screen", galaxy_state, galaxy_interrupt) MCFG_SCREEN_ADD("screen", RASTER) MCFG_SCREEN_REFRESH_RATE(50) |