mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
(mess) sb16: small fix (nw)
This commit is contained in:
parent
4a414a7c13
commit
5a3c3144fc
@ -454,7 +454,7 @@ UINT8 sb16_lle_device::dack_r(int line)
|
||||
if(m_adc_h)
|
||||
return ret;
|
||||
}
|
||||
if((!(m_mode & 0x40) && !(m_mode & 1)) || (!(m_mode & 0x80) && !(m_mode & 1)))
|
||||
if((!(m_mode & 0x40) && (m_mode & 1)) || (!(m_mode & 0x80) && !(m_mode & 1)))
|
||||
{
|
||||
m_adc_r = !m_adc_r;
|
||||
if(m_adc_r)
|
||||
|
Loading…
Reference in New Issue
Block a user