mirror of
https://github.com/holub/mame
synced 2025-07-02 08:39:21 +03:00
psr340: matrix scanning is positive too, but I suspect the PAD bit order is wrong too
This commit is contained in:
parent
4330d5b696
commit
46b02a6f9f
@ -69,7 +69,7 @@ u8 psr340_state::matrix_r()
|
||||
|
||||
for (int i = 0; i < 8; i++)
|
||||
{
|
||||
if (!BIT(m_matrixsel, i))
|
||||
if (BIT(m_matrixsel, i))
|
||||
{
|
||||
data |= m_key[i]->read();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user