ioport: fix possible issue where 4way joystick value could be invalid

This commit is contained in:
hap 2025-03-30 12:36:21 +02:00
parent ffc77c8903
commit 8ca4fcbbf9

View File

@ -619,6 +619,8 @@ void digital_joystick::frame_update()
m_current4way &= ~(UP_BIT | DOWN_BIT);
}
}
else
m_current4way &= m_current;
}