mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
(MESS) pet: Fixed sound. (nw)
This commit is contained in:
parent
f6dbaaafce
commit
ad46293b08
@ -199,7 +199,9 @@ void pet_state::update_speaker()
|
|||||||
{
|
{
|
||||||
if (m_speaker)
|
if (m_speaker)
|
||||||
{
|
{
|
||||||
m_speaker->level_w(!(m_via_cb2 || m_pia1_pa7));
|
int level = m_via_cb2 && m_pia1_pa7;
|
||||||
|
|
||||||
|
m_speaker->level_w(level);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user