From 8f336b2d3a5a0e7aae659e4934ebeb6c351f7f3c Mon Sep 17 00:00:00 2001 From: system11b Date: Tue, 7 Jul 2015 22:37:14 +0100 Subject: Corrected screen size for Bells & Whistles as per bug 05594 --- src/mame/drivers/tmnt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/tmnt.c b/src/mame/drivers/tmnt.c index bf2714c1a72..b90790345eb 100644 --- a/src/mame/drivers/tmnt.c +++ b/src/mame/drivers/tmnt.c @@ -2255,7 +2255,7 @@ static MACHINE_CONFIG_START( blswhstl, tmnt_state ) MCFG_SCREEN_REFRESH_RATE(60) MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500) /* not accurate */) MCFG_SCREEN_SIZE(64*8, 32*8) - MCFG_SCREEN_VISIBLE_AREA(14*8, (64-15)*8-1, 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_lgtnfght) MCFG_SCREEN_VBLANK_DRIVER(tmnt_state, screen_eof_blswhstl) MCFG_SCREEN_PALETTE("palette") -- cgit v1.2.3 From 13d34579cef1189fafa7d95cfb5883d59aaabf14 Mon Sep 17 00:00:00 2001 From: system11b Date: Tue, 7 Jul 2015 22:45:29 +0100 Subject: Also simplified TMNT calculation in line with Bells & Whistles. --- src/mame/drivers/tmnt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/tmnt.c b/src/mame/drivers/tmnt.c index b90790345eb..07b4b8b563a 100644 --- a/src/mame/drivers/tmnt.c +++ b/src/mame/drivers/tmnt.c @@ -2084,7 +2084,7 @@ static MACHINE_CONFIG_START( tmnt, tmnt_state ) MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500) /* not accurate */) 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-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_PALETTE("palette") // We see something strange in the left 8 pixels and the right 8 pixels, but it is same as real PCB. -- cgit v1.2.3