mirror of
https://github.com/holub/mame
synced 2025-04-17 22:13:04 +03:00
namco/ygv608: update_screen -> screen_update
This commit is contained in:
parent
05fa265691
commit
0eec31fa16
@ -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
|
||||
|
@ -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];
|
||||
|
@ -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(); }
|
||||
|
Loading…
Reference in New Issue
Block a user