camplynx: Dungeon Adventure now runs on the 48k.

This commit is contained in:
Robbbert 2015-05-30 00:03:57 +10:00
parent 5db0f01e2c
commit f258c865a1

View File

@ -363,7 +363,7 @@ READ8_MEMBER( camplynx_state::port80_r )
if BIT(m_port80, 1)
{
data &= 0xfe;
data |= (m_cass->input() > +0.02) ? 1 : 0;
data |= (m_cass->input() > +0.02) ? 0 : 1;
}
return data;
}