mirror of
https://github.com/holub/mame
synced 2025-05-17 19:24:59 +03:00
MT04760: fix cobram3 regression.
This commit is contained in:
parent
49f8c938bf
commit
82821bd714
@ -785,7 +785,7 @@ WRITE8_MEMBER( gottlieb_sound_r2_device::speech_control_w )
|
||||
}
|
||||
else
|
||||
{
|
||||
device_t *ay = machine().device((data & 0x08) ? "ay1" : "ay2");
|
||||
ay8913_device *ay = (data & 0x08) ? m_ay1 : m_ay2;
|
||||
ay8910_address_w(ay, 0, m_psg_latch);
|
||||
ay8910_data_w(ay, 0, m_psg_data_latch);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user