namco/ygv608: update_screen -> screen_update

This commit is contained in:
angelosa 2025-01-24 11:51:02 +01:00
parent 05fa265691
commit 0eec31fa16
3 changed files with 3 additions and 3 deletions

View File

@ -518,7 +518,7 @@ void namcond1_state::namcond1(machine_config &config)
V 261 26 224 3 0
*/
screen.set_raw(XTAL(49'152'000) / 8, 804 / 2, 108 / 2, (108 + 576) / 2, 261, 26, 26 + 224);
screen.set_screen_update("ygv608", FUNC(ygv608_device::update_screen));
screen.set_screen_update("ygv608", FUNC(ygv608_device::screen_update));
screen.set_palette("ygv608");
// sound hardware

View File

@ -1218,7 +1218,7 @@ void ygv608_device::draw_mosaic(bitmap_ind16 &bitmap, const rectangle &cliprect,
}
}
uint32_t ygv608_device::update_screen(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
uint32_t ygv608_device::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
#ifdef _SHOW_VIDEO_DEBUG
char buffer[64];

View File

@ -87,7 +87,7 @@ public:
// TODO: is this even a real connection?
void set_gfxbank(uint8_t gfxbank);
uint32_t update_screen(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
auto vblank_callback() { return m_vblank_handler.bind(); }
auto raster_callback() { return m_raster_handler.bind(); }