mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
fix typo in previous commit (nw)
This commit is contained in:
parent
908be55775
commit
d90e110a81
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user