From 9b76a0506405b16700a7655fbab81fec442ec1b5 Mon Sep 17 00:00:00 2001 From: arbee Date: Fri, 24 May 2019 20:56:57 -0400 Subject: [PATCH] mac: fixed missing audio for SE and Classic. [R. Belmont] --- src/mame/machine/mac.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/mame/machine/mac.cpp b/src/mame/machine/mac.cpp index b32134fe22a..495f4884f97 100644 --- a/src/mame/machine/mac.cpp +++ b/src/mame/machine/mac.cpp @@ -1524,6 +1524,12 @@ WRITE8_MEMBER(mac_state::mac_via_out_b_bbadb) { // printf("%s VIA1 OUT B: %02x\n", machine().describe_context().c_str(), data); + if (AUDIO_IS_CLASSIC) + { + m_snd_enable = (data & 0x80) == 0; + update_volume(); + } + // SE and Classic have SCSI enable/disable here if ((m_model == MODEL_MAC_SE) || (m_model == MODEL_MAC_CLASSIC)) {