diff options
author | 2016-06-16 20:45:48 +0200 | |
---|---|---|
committer | 2016-06-16 20:45:48 +0200 | |
commit | 6e962f2d95a00307b7361cef04fc50ea8e4da446 (patch) | |
tree | bc8f3f63efb8a7c9e959a0c0e9c4101701c8241b /src | |
parent | 580aae2c8c33c20f4d78d1c23751d75388cdfde8 (diff) | |
parent | e25b288390ab78ee759f4b25abb776ba03c0bd03 (diff) |
Merge pull request #957 from system11b/S11tmnt
Corrected viewable screen area as per real hardware
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/drivers/tmnt.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/drivers/tmnt.cpp b/src/mame/drivers/tmnt.cpp index 6fa6ad463e3..5bce4eeaf2e 100644 --- a/src/mame/drivers/tmnt.cpp +++ b/src/mame/drivers/tmnt.cpp @@ -2095,11 +2095,10 @@ static MACHINE_CONFIG_START( tmnt, 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(13*8, (64-13)*8-1, 2*8, 30*8-1 ) - MCFG_SCREEN_VISIBLE_AREA(12*8, (64-12)*8-1, 2*8, 30*8-1 ) + MCFG_SCREEN_VISIBLE_AREA(12*8+8, (64-12)*8-1, 2*8, 30*8-1 ) + // verified against real hardware 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. MCFG_PALETTE_ADD("palette", 1024) MCFG_PALETTE_FORMAT(xBBBBBGGGGGRRRRR) |