apple2gs: better fix for 'p' being marked as keypad [ksherlock]

This commit is contained in:
arbee 2021-02-13 12:24:29 -05:00
parent 854bd7a84d
commit 9967ab0524

View File

@ -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;
}