summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/segas32.c
diff options
context:
space:
mode:
author David Haywood <mamehaze@users.noreply.github.com>2015-06-10 23:45:01 +0100
committer David Haywood <mamehaze@users.noreply.github.com>2015-06-10 23:45:01 +0100
commita9080894b44637c1bee63706fc3fd8b20ea1c015 (patch)
tree32ddd6c9ae6e60f1ff23b6ae84b8ada50d92ff2a /src/mame/drivers/segas32.c
parent13b609deb2076a9c5df4e55dc042e1fc3c6f3988 (diff)
the slave does not have / need the DSP (nw)
Diffstat (limited to 'src/mame/drivers/segas32.c')
-rw-r--r--src/mame/drivers/segas32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/segas32.c b/src/mame/drivers/segas32.c
index a8309f3643f..bfcf36dd938 100644
--- a/src/mame/drivers/segas32.c
+++ b/src/mame/drivers/segas32.c
@@ -5120,7 +5120,7 @@ DRIVER_INIT_MEMBER(segas32_new_state,orunners) { m_mainpcb->init_orunners(); }
DRIVER_INIT_MEMBER(segas32_new_state, arescue)
{
m_mainpcb->init_arescue(1);
- m_slavepcb->init_arescue(1);
+ m_slavepcb->init_arescue(0);
m_dual_pcb_comms = auto_alloc_array(machine(), UINT16, 0x1000/2);
m_mainpcb->m_maincpu->space(AS_PROGRAM).install_readwrite_handler(0x810000, 0x810fff, read16_delegate(FUNC(segas32_new_state::dual_pcb_comms_r),this), write16_delegate(FUNC(segas32_new_state::dual_pcb_comms_w),this));