summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/psychic5.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/psychic5.cpp')
-rw-r--r--src/mame/drivers/psychic5.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/psychic5.cpp b/src/mame/drivers/psychic5.cpp
index 888a5dd062c..723f791b6ab 100644
--- a/src/mame/drivers/psychic5.cpp
+++ b/src/mame/drivers/psychic5.cpp
@@ -733,7 +733,7 @@ void psychic5_state::psychic5(machine_config &config)
m_audiocpu->set_addrmap(AS_PROGRAM, &psychic5_state::psychic5_sound_map);
m_audiocpu->set_addrmap(AS_IO, &psychic5_state::psychic5_soundport_map);
- config.m_minimum_quantum = attotime::from_hz(600); /* Allow time for 2nd cpu to interleave */
+ config.set_maximum_quantum(attotime::from_hz(600)); /* Allow time for 2nd cpu to interleave */
MCFG_MACHINE_START_OVERRIDE(psychic5_state,psychic5)
@@ -781,7 +781,7 @@ void psychic5_state::bombsa(machine_config &config)
m_audiocpu->set_addrmap(AS_PROGRAM, &psychic5_state::bombsa_sound_map);
m_audiocpu->set_addrmap(AS_IO, &psychic5_state::bombsa_soundport_map);
- config.m_minimum_quantum = attotime::from_hz(600);
+ config.set_maximum_quantum(attotime::from_hz(600));
MCFG_MACHINE_START_OVERRIDE(psychic5_state,bombsa)