mirror of
https://github.com/holub/mame
synced 2025-05-24 14:56:21 +03:00
fix SCREEN_EOF regression
documented here: http://www.mametesters.org/view.php?id=4623
This commit is contained in:
parent
b259746420
commit
e80e3bb7ed
@ -2950,8 +2950,8 @@ if (0 && screen.machine().input().code_pressed(KEYCODE_Z))
|
||||
|
||||
SCREEN_VBLANK( cps1 )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
{
|
||||
cps_state *state = screen.machine().driver_data<cps_state>();
|
||||
|
||||
|
@ -867,8 +867,8 @@ SCREEN_UPDATE_IND16( psikyo_bootleg )
|
||||
|
||||
SCREEN_VBLANK( psikyo )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
{
|
||||
psikyo_state *state = screen.machine().driver_data<psikyo_state>();
|
||||
memcpy(state->m_spritebuf2, state->m_spritebuf1, 0x2000);
|
||||
|
@ -1310,8 +1310,8 @@ popmessage ("%08x %08x %08x %08x\n%08x %08x %08x %08x",
|
||||
|
||||
SCREEN_VBLANK( psikyosh )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
{
|
||||
address_space *space = screen.machine().device("maincpu")->memory().space(AS_PROGRAM);
|
||||
buffer_spriteram32_w(space, 0, 0, 0xffffffff);
|
||||
|
Loading…
Reference in New Issue
Block a user