Also simplified TMNT calculation in line with Bells & Whistles.

This commit is contained in:
system11b 2015-07-07 22:45:29 +01:00
parent 8f336b2d3a
commit 13d34579ce

View file

@ -2084,7 +2084,7 @@ static MACHINE_CONFIG_START( tmnt, tmnt_state )
MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500) /* not accurate */) MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500) /* not accurate */)
MCFG_SCREEN_SIZE(64*8, 32*8) MCFG_SCREEN_SIZE(64*8, 32*8)
//MCFG_SCREEN_VISIBLE_AREA(13*8, (64-13)*8-1, 2*8, 30*8-1 ) //MCFG_SCREEN_VISIBLE_AREA(13*8, (64-13)*8-1, 2*8, 30*8-1 )
MCFG_SCREEN_VISIBLE_AREA(13*8-8, (64-13)*8-1+8, 2*8, 30*8-1 ) MCFG_SCREEN_VISIBLE_AREA(12*8, (64-12)*8-1, 2*8, 30*8-1 )
MCFG_SCREEN_UPDATE_DRIVER(tmnt_state, screen_update_tmnt) MCFG_SCREEN_UPDATE_DRIVER(tmnt_state, screen_update_tmnt)
MCFG_SCREEN_PALETTE("palette") MCFG_SCREEN_PALETTE("palette")
// We see something strange in the left 8 pixels and the right 8 pixels, but it is same as real PCB. // We see something strange in the left 8 pixels and the right 8 pixels, but it is same as real PCB.