mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
apple2gs: better fix for 'p' being marked as keypad [ksherlock]
This commit is contained in:
parent
854bd7a84d
commit
9967ab0524
@ -2445,7 +2445,11 @@ u8 apple2gs_state::c000_r(offs_t offset)
|
||||
{
|
||||
ret |= 0x10;
|
||||
}
|
||||
else if ((m_lastchar >= 0x32 && m_lastchar <= 0x3f) && (m_lastchar != 0x39))
|
||||
else if (m_lastchar >= 0x32 && m_lastchar <= 0x37)
|
||||
{
|
||||
ret |= 0x10;
|
||||
}
|
||||
else if (m_lastchar >= 0x3c && m_lastchar <= 0x3f)
|
||||
{
|
||||
ret |= 0x10;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user