From 4efe9aea0a4ef52d7bb033d07d1308356b240fe1 Mon Sep 17 00:00:00 2001 From: system11b Date: Sun, 5 Jul 2015 03:24:59 +0100 Subject: [PATCH] Corrected viewable display as per bug 05973 Verified on actual PCB --- src/mame/drivers/crimfght.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/crimfght.c b/src/mame/drivers/crimfght.c index e6f6614e7cf..c9530fa4354 100644 --- a/src/mame/drivers/crimfght.c +++ b/src/mame/drivers/crimfght.c @@ -266,7 +266,7 @@ static MACHINE_CONFIG_START( crimfght, crimfght_state ) MCFG_SCREEN_REFRESH_RATE(59.17) /* verified on pcb */ MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0)) 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(12*8-2, (64-12)*8-3, 2*8, 30*8-1 ) MCFG_SCREEN_UPDATE_DRIVER(crimfght_state, screen_update_crimfght) MCFG_SCREEN_PALETTE("palette")