mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
beathead is not keen on the horizontal partial updates
drivers\cardline.c drivers\cubeqst.c drivers\firefox.c drivers\galaxian.c drivers\merit.c drivers\segas24.c drivers\slotcarn.c drivers\vicdual.c video\btoads.c video\cloak.c video\dkong.c video\galaxian.c video\gyruss.c video\itech8.c video\meadows.c video\qix.c video\spacefb.c video\system1.c video\tp84.c also need checking for regressions as the behavior of update_now changed
This commit is contained in:
parent
bb77797e97
commit
4b5f272da0
@ -120,7 +120,8 @@ TIMER_DEVICE_CALLBACK_MEMBER(beathead_state::scanline_callback)
|
||||
int scanline = param;
|
||||
|
||||
/* update the video */
|
||||
m_screen->update_now();
|
||||
// m_screen->update_now();
|
||||
m_screen->update_partial(m_screen->vpos());
|
||||
|
||||
/* on scanline zero, clear any halt condition */
|
||||
if (scanline == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user