summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author angelosa <salese_corp_ltd@email.it>2017-08-20 13:48:39 +0200
committer angelosa <salese_corp_ltd@email.it>2017-08-20 13:48:39 +0200
commitae574c8d21c48362d3e98cedc386be4a633934bb (patch)
treed21da0fed202a3e8d8b6f8c8168112948f557e96
parent1fe82affcb2f15fc89645e68db44695f56d3f166 (diff)
taitoair.cpp: added screen raw parameters, fixes pilot acknowledge sound sample timing [Angelo Salese]
-rw-r--r--src/mame/drivers/taitoair.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mame/drivers/taitoair.cpp b/src/mame/drivers/taitoair.cpp
index 68e812bc3c4..7c162493527 100644
--- a/src/mame/drivers/taitoair.cpp
+++ b/src/mame/drivers/taitoair.cpp
@@ -728,10 +728,12 @@ static MACHINE_CONFIG_START( airsys )
/* video hardware */
MCFG_SCREEN_ADD("screen", RASTER)
- MCFG_SCREEN_REFRESH_RATE(60)
- MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0))
- MCFG_SCREEN_SIZE(64*16, 32*16)
- MCFG_SCREEN_VISIBLE_AREA(0*16, 32*16-1, 3*16, 28*16-1)
+// MCFG_SCREEN_REFRESH_RATE(60)
+// MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0))
+// MCFG_SCREEN_SIZE(64*16, 32*16)
+// MCFG_SCREEN_VISIBLE_AREA(0*16, 32*16-1, 3*16, 28*16-1)
+ // Estimated, assume same as mlanding.cpp
+ MCFG_SCREEN_RAW_PARAMS(16000000, 640, 0, 512, 462, 3*16, 28*16)
MCFG_SCREEN_UPDATE_DRIVER(taitoair_state, screen_update_taitoair)
MCFG_SCREEN_PALETTE("palette")