diff options
Diffstat (limited to 'src/mame/drivers/blstroid.cpp')
-rw-r--r-- | src/mame/drivers/blstroid.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/blstroid.cpp b/src/mame/drivers/blstroid.cpp index e8cc9350c27..37978c25eeb 100644 --- a/src/mame/drivers/blstroid.cpp +++ b/src/mame/drivers/blstroid.cpp @@ -177,8 +177,8 @@ GFXDECODE_END MACHINE_CONFIG_START(blstroid_state::blstroid) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", M68000, ATARI_CLOCK_14MHz/2) - MCFG_CPU_PROGRAM_MAP(main_map) + MCFG_DEVICE_ADD("maincpu", M68000, ATARI_CLOCK_14MHz/2) + MCFG_DEVICE_PROGRAM_MAP(main_map) MCFG_EEPROM_2804_ADD("eeprom") MCFG_EEPROM_28XX_LOCK_AFTER_WRITE(true) @@ -202,7 +202,7 @@ MACHINE_CONFIG_START(blstroid_state::blstroid) MCFG_SCREEN_RAW_PARAMS(ATARI_CLOCK_14MHz, 456*2, 0, 320*2, 262, 0, 240) MCFG_SCREEN_UPDATE_DRIVER(blstroid_state, screen_update_blstroid) MCFG_SCREEN_PALETTE("palette") - MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(blstroid_state, video_int_write_line)) + MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(*this, blstroid_state, video_int_write_line)) MCFG_VIDEO_START_OVERRIDE(blstroid_state,blstroid) |