diff options
| author | 2019-10-23 13:38:50 -0400 | |
|---|---|---|
| committer | 2019-10-23 13:38:50 -0400 | |
| commit | 31d52168f111d76c0490e49ace17dc566563aae9 (patch) | |
| tree | d2cfa62ef711ae89ac6e231100d6650dd45b3285 | |
| parent | b30cd9c7a8770a56ad079419c791dcf52d2fbdc5 (diff) | |
psychic5.cpp: Eliminate MCFG_VIDEO_RESET_OVERRIDE (nw)
| -rw-r--r-- | src/mame/drivers/psychic5.cpp | 2 | ||||
| -rw-r--r-- | src/mame/includes/psychic5.h | 2 | ||||
| -rw-r--r-- | src/mame/video/psychic5.cpp | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/src/mame/drivers/psychic5.cpp b/src/mame/drivers/psychic5.cpp index 161ca68bf1f..888a5dd062c 100644 --- a/src/mame/drivers/psychic5.cpp +++ b/src/mame/drivers/psychic5.cpp @@ -748,7 +748,6 @@ void psychic5_state::psychic5(machine_config &config) JALECO_BLEND(config, m_blend, 0); MCFG_VIDEO_START_OVERRIDE(psychic5_state,psychic5) - MCFG_VIDEO_RESET_OVERRIDE(psychic5_state,psychic5) /* sound hardware */ SPEAKER(config, "mono").front_center(); @@ -795,7 +794,6 @@ void psychic5_state::bombsa(machine_config &config) PALETTE(config, m_palette).set_entries(768); MCFG_VIDEO_START_OVERRIDE(psychic5_state,bombsa) - MCFG_VIDEO_RESET_OVERRIDE(psychic5_state,psychic5) /* sound hardware */ SPEAKER(config, "mono").front_center(); diff --git a/src/mame/includes/psychic5.h b/src/mame/includes/psychic5.h index 3f2da46a08a..513ad0985b8 100644 --- a/src/mame/includes/psychic5.h +++ b/src/mame/includes/psychic5.h @@ -87,7 +87,7 @@ private: virtual void video_start() override; DECLARE_VIDEO_START(psychic5); DECLARE_VIDEO_START(bombsa); - DECLARE_VIDEO_RESET(psychic5); + virtual void video_reset() override; TIMER_DEVICE_CALLBACK_MEMBER(scanline); diff --git a/src/mame/video/psychic5.cpp b/src/mame/video/psychic5.cpp index 9628c3b87c6..8d03ab5d549 100644 --- a/src/mame/video/psychic5.cpp +++ b/src/mame/video/psychic5.cpp @@ -207,7 +207,7 @@ VIDEO_START_MEMBER(psychic5_state,bombsa) save_item(NAME(m_bombsa_unknown)); } -VIDEO_RESET_MEMBER(psychic5_state,psychic5) +void psychic5_state::video_reset() { m_bg_clip_mode = 0; m_ps5_vram_page = 0; |
