mirror of
https://github.com/holub/mame
synced 2025-10-07 01:16:22 +03:00
mac: fixed missing audio for SE and Classic. [R. Belmont]
This commit is contained in:
parent
8c5d684e9c
commit
9b76a05064
@ -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))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user