mirror of
https://github.com/holub/mame
synced 2025-05-24 14:56:21 +03:00
screen eof regressions
This commit is contained in:
parent
edd727ec39
commit
d04fd53baa
@ -462,8 +462,8 @@ SCREEN_UPDATE_IND16( champbwl )
|
||||
|
||||
SCREEN_VBLANK( champbwl )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
screen.machine().device<seta001_device>("spritegen")->tnzs_eof();
|
||||
}
|
||||
|
||||
@ -521,8 +521,8 @@ static SCREEN_UPDATE_IND16( doraemon )
|
||||
|
||||
static SCREEN_VBLANK( doraemon )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
screen.machine().device<seta001_device>("spritegen")->setac_eof();
|
||||
}
|
||||
|
||||
|
@ -127,8 +127,8 @@ The current set of Super Model is an example of type C
|
||||
|
||||
static SCREEN_VBLANK( galpanic )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
{
|
||||
device_t *pandora = screen.machine().device("pandora");
|
||||
pandora_eof(pandora);
|
||||
|
@ -171,8 +171,8 @@ static SCREEN_UPDATE_IND16( hvyunit )
|
||||
|
||||
static SCREEN_VBLANK( hvyunit )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
{
|
||||
hvyunit_state *state = screen.machine().driver_data<hvyunit_state>();
|
||||
pandora_eof(state->m_pandora);
|
||||
|
@ -136,8 +136,8 @@ static INTERRUPT_GEN( sandscrp_interrupt )
|
||||
|
||||
static SCREEN_VBLANK( sandscrp )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
{
|
||||
sandscrp_state *state = screen.machine().driver_data<sandscrp_state>();
|
||||
device_t *pandora = screen.machine().device("pandora");
|
||||
|
@ -1547,8 +1547,8 @@ static READ8_DEVICE_HANDLER( dsw2_r )
|
||||
*/
|
||||
static SCREEN_VBLANK( seta_buffer_sprites )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
{
|
||||
//seta_state *state = machine.driver_data<seta_state>();
|
||||
screen.machine().device<seta001_device>("spritegen")->setac_eof();
|
||||
|
@ -94,8 +94,8 @@ static SCREEN_UPDATE_IND16( snowbros )
|
||||
|
||||
static SCREEN_VBLANK( snowbros )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
{
|
||||
device_t *pandora = screen.machine().device("pandora");
|
||||
pandora_eof(pandora);
|
||||
|
@ -383,8 +383,8 @@ static const ym2151_interface ym2151_config =
|
||||
|
||||
static SCREEN_VBLANK( wwfwfest )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
{
|
||||
address_space *space = screen.machine().device("maincpu")->memory().space(AS_PROGRAM);
|
||||
|
||||
|
@ -148,8 +148,8 @@ SCREEN_UPDATE_IND16( airbustr )
|
||||
|
||||
SCREEN_VBLANK( airbustr )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
{
|
||||
airbustr_state *state = screen.machine().driver_data<airbustr_state>();
|
||||
|
||||
|
@ -83,8 +83,8 @@ SCREEN_UPDATE_IND16( djboy )
|
||||
|
||||
SCREEN_VBLANK( djboy )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
{
|
||||
djboy_state *state = screen.machine().driver_data<djboy_state>();
|
||||
pandora_eof(state->m_pandora);
|
||||
|
@ -1067,8 +1067,8 @@ SCREEN_UPDATE_IND16( setaroul )
|
||||
|
||||
SCREEN_VBLANK( setaroul )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
screen.machine().device<seta001_device>("spritegen")->tnzs_eof();
|
||||
}
|
||||
|
||||
|
@ -55,7 +55,7 @@ SCREEN_UPDATE_IND16( tnzs )
|
||||
|
||||
SCREEN_VBLANK( tnzs )
|
||||
{
|
||||
// rising edge
|
||||
if (vblank_on)
|
||||
// falling edge
|
||||
if (!vblank_on)
|
||||
screen.machine().device<seta001_device>("spritegen")->tnzs_eof();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user