From 42e349974978cf4734b19ecaa25a4b49c41dc6ab Mon Sep 17 00:00:00 2001 From: system11b Date: Thu, 16 Jul 2015 19:54:38 +0100 Subject: [PATCH] Corrected lgtnfght/trigon visible area as per PCB. --- 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 07b4b8b563a..7dab98b981e 100644 --- a/src/mame/drivers/tmnt.c +++ b/src/mame/drivers/tmnt.c @@ -2198,7 +2198,7 @@ static MACHINE_CONFIG_START( lgtnfght, 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-14)*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_PALETTE("palette")