mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
tmnt.cpp: changed back to 320x224 as per MT04790 discussion
vigilant.cpp: corrected visible screen area (PCB comparison)
This commit is contained in:
parent
36190dfaa9
commit
0881bacf1c
@ -2087,7 +2087,7 @@ 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(12*8+8, (64-12)*8-1, 2*8, 30*8-1 )
|
||||
MCFG_SCREEN_VISIBLE_AREA(12*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")
|
||||
|
@ -485,7 +485,7 @@ static MACHINE_CONFIG_START( vigilant, vigilant_state )
|
||||
MCFG_SCREEN_REFRESH_RATE(55)
|
||||
MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500) /* not accurate */)
|
||||
MCFG_SCREEN_SIZE(64*8, 32*8)
|
||||
MCFG_SCREEN_VISIBLE_AREA(16*8, (64-16)*8-1, 0*8, 32*8-1 )
|
||||
MCFG_SCREEN_VISIBLE_AREA((16*8)-1, (64-16)*8-4, 0*8, 32*8-1 )
|
||||
MCFG_SCREEN_UPDATE_DRIVER(vigilant_state, screen_update_vigilant)
|
||||
MCFG_SCREEN_PALETTE("palette")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user