fix typo in previous commit (nw)

This commit is contained in:
arbee 2019-07-28 21:52:40 -04:00
parent 908be55775
commit d90e110a81

View File

@ -85,14 +85,14 @@ READ_LINE_MEMBER(apple2_joyport_device::sw1_r)
{
u8 port_read = m_an1 ? m_player2->read() : m_player1->read();
return m_an1 ? BIT(port_read, 0) : BIT(port_read, 3);
return m_an0 ? BIT(port_read, 0) : BIT(port_read, 3);
}
READ_LINE_MEMBER(apple2_joyport_device::sw2_r)
{
u8 port_read = m_an1 ? m_player2->read() : m_player1->read();
return m_an1 ? BIT(port_read, 2) : BIT(port_read, 1);
return m_an0 ? BIT(port_read, 2) : BIT(port_read, 1);
}
WRITE_LINE_MEMBER(apple2_joyport_device::an0_w)