summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Guru <mr-t-guru@users.noreply.github.com>2015-07-06 02:17:03 +0800
committer Guru <mr-t-guru@users.noreply.github.com>2015-07-06 02:17:03 +0800
commit44e4af5ff871a12dea41947a1de22c47c30aa83d (patch)
tree5e6530acd664ed92625a7fd5f6b3845e321e2905
parent9908cb1df90bf46766c20c6c554ac300b2d9a96b (diff)
parent8ac7b878601897f628e9569ecfc3f81e4e93481b (diff)
Merge pull request #239 from system11b/S11scontra
Corrected viewable screen area as per bug 05593
-rw-r--r--src/mame/drivers/thunderx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/thunderx.c b/src/mame/drivers/thunderx.c
index 4aff5b7d41f..89b9124a30e 100644
--- a/src/mame/drivers/thunderx.c
+++ b/src/mame/drivers/thunderx.c
@@ -649,7 +649,7 @@ static MACHINE_CONFIG_START( scontra, thunderx_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(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 ) /* verified on scontra and thunderx PCBs */
MCFG_SCREEN_UPDATE_DRIVER(thunderx_state, screen_update)
MCFG_SCREEN_PALETTE("palette")