psychic5.cpp: Eliminate MCFG_VIDEO_RESET_OVERRIDE (nw)

This commit is contained in:
AJR 2019-10-23 13:38:50 -04:00
parent b30cd9c7a8
commit 31d52168f1
3 changed files with 2 additions and 4 deletions

View File

@ -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();

View File

@ -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);

View File

@ -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;