From fd88028491c1292a012a05b14afa7ca12a06bcab Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Tue, 9 Apr 2013 10:05:01 +0000 Subject: [PATCH] made m_audiocpu optional for those drivers setting value on null, rest will need to be catch with automated tests (nw) --- src/mame/includes/btime.h | 2 +- src/mame/includes/marineb.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/includes/btime.h b/src/mame/includes/btime.h index 0d26d875a44..8856bcacf80 100644 --- a/src/mame/includes/btime.h +++ b/src/mame/includes/btime.h @@ -56,7 +56,7 @@ public: /* devices */ required_device m_maincpu; - required_device m_audiocpu; + optional_device m_audiocpu; DECLARE_WRITE8_MEMBER(audio_nmi_enable_w); DECLARE_WRITE8_MEMBER(lnc_w); diff --git a/src/mame/includes/marineb.h b/src/mame/includes/marineb.h index 1160da72b9d..26907203bea 100644 --- a/src/mame/includes/marineb.h +++ b/src/mame/includes/marineb.h @@ -24,7 +24,7 @@ public: /* devices */ required_device m_maincpu; - required_device m_audiocpu; + optional_device m_audiocpu; UINT8 m_irq_mask; DECLARE_WRITE8_MEMBER(irq_mask_w);