screen eof regressions

This commit is contained in:
Michaël Banaan Ananas 2012-01-23 05:16:12 +00:00
parent edd727ec39
commit d04fd53baa
11 changed files with 24 additions and 24 deletions

View File

@ -462,8 +462,8 @@ SCREEN_UPDATE_IND16( champbwl )
SCREEN_VBLANK( champbwl ) SCREEN_VBLANK( champbwl )
{ {
// rising edge // falling edge
if (vblank_on) if (!vblank_on)
screen.machine().device<seta001_device>("spritegen")->tnzs_eof(); screen.machine().device<seta001_device>("spritegen")->tnzs_eof();
} }
@ -521,8 +521,8 @@ static SCREEN_UPDATE_IND16( doraemon )
static SCREEN_VBLANK( doraemon ) static SCREEN_VBLANK( doraemon )
{ {
// rising edge // falling edge
if (vblank_on) if (!vblank_on)
screen.machine().device<seta001_device>("spritegen")->setac_eof(); screen.machine().device<seta001_device>("spritegen")->setac_eof();
} }

View File

@ -127,8 +127,8 @@ The current set of Super Model is an example of type C
static SCREEN_VBLANK( galpanic ) static SCREEN_VBLANK( galpanic )
{ {
// rising edge // falling edge
if (vblank_on) if (!vblank_on)
{ {
device_t *pandora = screen.machine().device("pandora"); device_t *pandora = screen.machine().device("pandora");
pandora_eof(pandora); pandora_eof(pandora);

View File

@ -171,8 +171,8 @@ static SCREEN_UPDATE_IND16( hvyunit )
static SCREEN_VBLANK( hvyunit ) static SCREEN_VBLANK( hvyunit )
{ {
// rising edge // falling edge
if (vblank_on) if (!vblank_on)
{ {
hvyunit_state *state = screen.machine().driver_data<hvyunit_state>(); hvyunit_state *state = screen.machine().driver_data<hvyunit_state>();
pandora_eof(state->m_pandora); pandora_eof(state->m_pandora);

View File

@ -136,8 +136,8 @@ static INTERRUPT_GEN( sandscrp_interrupt )
static SCREEN_VBLANK( sandscrp ) static SCREEN_VBLANK( sandscrp )
{ {
// rising edge // falling edge
if (vblank_on) if (!vblank_on)
{ {
sandscrp_state *state = screen.machine().driver_data<sandscrp_state>(); sandscrp_state *state = screen.machine().driver_data<sandscrp_state>();
device_t *pandora = screen.machine().device("pandora"); device_t *pandora = screen.machine().device("pandora");

View File

@ -1547,8 +1547,8 @@ static READ8_DEVICE_HANDLER( dsw2_r )
*/ */
static SCREEN_VBLANK( seta_buffer_sprites ) static SCREEN_VBLANK( seta_buffer_sprites )
{ {
// rising edge // falling edge
if (vblank_on) if (!vblank_on)
{ {
//seta_state *state = machine.driver_data<seta_state>(); //seta_state *state = machine.driver_data<seta_state>();
screen.machine().device<seta001_device>("spritegen")->setac_eof(); screen.machine().device<seta001_device>("spritegen")->setac_eof();

View File

@ -94,8 +94,8 @@ static SCREEN_UPDATE_IND16( snowbros )
static SCREEN_VBLANK( snowbros ) static SCREEN_VBLANK( snowbros )
{ {
// rising edge // falling edge
if (vblank_on) if (!vblank_on)
{ {
device_t *pandora = screen.machine().device("pandora"); device_t *pandora = screen.machine().device("pandora");
pandora_eof(pandora); pandora_eof(pandora);

View File

@ -383,8 +383,8 @@ static const ym2151_interface ym2151_config =
static SCREEN_VBLANK( wwfwfest ) static SCREEN_VBLANK( wwfwfest )
{ {
// rising edge // falling edge
if (vblank_on) if (!vblank_on)
{ {
address_space *space = screen.machine().device("maincpu")->memory().space(AS_PROGRAM); address_space *space = screen.machine().device("maincpu")->memory().space(AS_PROGRAM);

View File

@ -148,8 +148,8 @@ SCREEN_UPDATE_IND16( airbustr )
SCREEN_VBLANK( airbustr ) SCREEN_VBLANK( airbustr )
{ {
// rising edge // falling edge
if (vblank_on) if (!vblank_on)
{ {
airbustr_state *state = screen.machine().driver_data<airbustr_state>(); airbustr_state *state = screen.machine().driver_data<airbustr_state>();

View File

@ -83,8 +83,8 @@ SCREEN_UPDATE_IND16( djboy )
SCREEN_VBLANK( djboy ) SCREEN_VBLANK( djboy )
{ {
// rising edge // falling edge
if (vblank_on) if (!vblank_on)
{ {
djboy_state *state = screen.machine().driver_data<djboy_state>(); djboy_state *state = screen.machine().driver_data<djboy_state>();
pandora_eof(state->m_pandora); pandora_eof(state->m_pandora);

View File

@ -1067,8 +1067,8 @@ SCREEN_UPDATE_IND16( setaroul )
SCREEN_VBLANK( setaroul ) SCREEN_VBLANK( setaroul )
{ {
// rising edge // falling edge
if (vblank_on) if (!vblank_on)
screen.machine().device<seta001_device>("spritegen")->tnzs_eof(); screen.machine().device<seta001_device>("spritegen")->tnzs_eof();
} }

View File

@ -55,7 +55,7 @@ SCREEN_UPDATE_IND16( tnzs )
SCREEN_VBLANK( tnzs ) SCREEN_VBLANK( tnzs )
{ {
// rising edge // falling edge
if (vblank_on) if (!vblank_on)
screen.machine().device<seta001_device>("spritegen")->tnzs_eof(); screen.machine().device<seta001_device>("spritegen")->tnzs_eof();
} }