diff options
author | 2015-06-08 20:26:15 -0400 | |
---|---|---|
committer | 2015-06-08 20:26:15 -0400 | |
commit | 110ec50118f5933ba2db847da7a5645499ba6be2 (patch) | |
tree | d6e8b75f9292faacb3dfb41b663a8de31043184e /src | |
parent | a4fc1f2a003a7370ad0dacfc3917f44c59c4f025 (diff) |
Revert the brute force fix for the exidy/driver sound issues as it doesn't fix the problem and only slightly improves sound stability which still breaks and causes hangs/crashes in some games. (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/drivers/exidy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/exidy.c b/src/mame/drivers/exidy.c index dee3157159f..706dab9d813 100644 --- a/src/mame/drivers/exidy.c +++ b/src/mame/drivers/exidy.c @@ -868,7 +868,7 @@ static MACHINE_CONFIG_DERIVED( venture, base ) MCFG_CPU_MODIFY("maincpu") MCFG_CPU_PROGRAM_MAP(venture_map) - MCFG_QUANTUM_PERFECT_CPU("maincpu") + MCFG_QUANTUM_TIME(attotime::from_hz(600)) /* audio hardware */ MCFG_FRAGMENT_ADD(venture_audio) @@ -890,7 +890,7 @@ static MACHINE_CONFIG_DERIVED( mtrap, venture ) /* basic machine hardware */ - MCFG_QUANTUM_PERFECT_CPU("maincpu") + MCFG_QUANTUM_TIME(attotime::from_hz(1920)) /* audio hardware */ MCFG_FRAGMENT_ADD(mtrap_cvsd_audio) |