mirror of
https://github.com/holub/mame
synced 2025-07-01 08:18:59 +03:00
Merge pull request #5862 from TwistedTom/kemp-fix-mt7453
ZX Spectrum, kempston joystick fix, MameTesters #7453
This commit is contained in:
commit
f7955dfb38
@ -73,7 +73,7 @@ uint8_t spectrum_kempjoy_device::iorq_r(offs_t offset)
|
|||||||
{
|
{
|
||||||
uint8_t data = 0xff;
|
uint8_t data = 0xff;
|
||||||
|
|
||||||
if (offset == 0x1f)
|
if ((offset & 0x00ff) == 0x1f)
|
||||||
{
|
{
|
||||||
data = m_joy->read() & 0x1f;
|
data = m_joy->read() & 0x1f;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user